Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7.1 #186

Merged
merged 4 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.7.1

[bumpversion:file:pyproject.toml]

[bumpversion:file:sonar-project.properties]

[bumpversion:file:kedro_kubeflow/__init__.py]

[bumpversion:file:.copier-answers.yml]
6 changes: 0 additions & 6 deletions .codeclimate.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changes here will be overwritten by Copier
_commit: v1.0.0
_src_path: [email protected]:getindata/python-opensource-template.git
authors:
- Mateusz Pytel <[email protected]>
- Mariusz Strzelecki <[email protected]>
description: Kedro plugin with Kubeflow Pipelines support
docs_url: https://kedro-kubeflow.readthedocs.io/
full_name: Kedro Kubeflow Plugin
github_url: https://github.com/getindata/kedro-kubeflow
initial_version: 0.7.1
keywords:
- kedro-plugin
- kubeflow
- machinelearning
- mlops
- kubeflow-pipelines
- kedro
maintainers:
- GetInData MLOPS <[email protected]>
module_name: kedro_kubeflow
short_name: kedro-kubeflow
2 changes: 0 additions & 2 deletions .github/CODEOWNERS

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
run: |
echo "INPUT_VERSION_PART: ${{ github.event.inputs.version_part }}"
python -c "if '${{ github.event.inputs.version_part }}' not in ['patch', 'minor', 'major']: raise ValueError(\"'${{ github.event.inputs.version_part }}' must be one of ['patch', 'minor', 'major'])\")"
- name: Bump the version number # bump2version is a maintained fork of original bumpversion
- name: Bump the version number
id: bump_version
run: |
pip install bump2version
bump2version ${{ github.event.inputs.version_part }}
bumpversion ${{ github.event.inputs.version_part }}
echo "::set-output name=package_version::$(cat $PYTHON_PACKAGE/__init__.py | grep -Po '\d+\.\d+\.\d+')"
- name: Update the CHANGELOG according to 'Keep a Changelog' guidelines
uses: thomaseizinger/keep-a-changelog-new-release@v1
Expand All @@ -51,7 +51,6 @@ jobs:
PULL_REQUEST_FROM_BRANCH: release-${{ steps.bump_version.outputs.package_version }}
PULL_REQUEST_TITLE: "Release ${{ steps.bump_version.outputs.package_version }}"
PULL_REQUEST_BODY: "Bump version and CHANGELOG for next release."
PULL_REQUEST_ASSIGNEES: "em-pe"
- name: Commit the changes
run: |
git commit -am "FIX #${{ steps.open_pr.outputs.pull_request_number }} - Bump version and CHANGELOG for release ${{ steps.bump_version.outputs.package_version }}"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Build package dist from source # A better way will be : https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ but pep 517 is still marked as experimental
run: |
python setup.py sdist
pip install poetry
poetry build
- name: Merge back to develop # we have to set the config first on a fresh machine
run: |
git config user.name github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
# Spellcheck
- uses: actions/checkout@v2
- uses: rojopolis/[email protected]
name: Spellcheck
name: Spellcheck
Loading