Skip to content

Commit

Permalink
Merge pull request #76 from getindata/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
marrrcin authored Sep 8, 2022
2 parents 241848b + 963976a commit e6aa5e5
Show file tree
Hide file tree
Showing 61 changed files with 4,213 additions and 692 deletions.
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.0

[bumpversion:file:pyproject.toml]

[bumpversion:file:sonar-project.properties]

[bumpversion:file:kedro_vertexai/__init__.py]

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

This file was deleted.

23 changes: 23 additions & 0 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changes here will be overwritten by Copier
_commit: d04eecb
_src_path: [email protected]:getindata/python-opensource-template.git
authors:
- Marcin Zabłocki <[email protected]>
- Mateusz Pytel <[email protected]>
- Mariusz Strzelecki <[email protected]>
description: Kedro plugin with GCP Vertex AI support
docs_url: https://kedro-vertexai.readthedocs.io/
full_name: Kedro Vertex AI Plugin
github_url: https://github.com/getindata/kedro-vertexai
initial_version: 0.7.0
keywords:
- kedro-plugin
- kedro
- mlops
- vertexai
- googlecloudplatform
- machinelearning
maintainers:
- GetInData MLOPS <[email protected]>
module_name: kedro_vertexai
short_name: kedro-vertexai
6 changes: 0 additions & 6 deletions .coveragerc

This file was deleted.

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.

82 changes: 0 additions & 82 deletions .github/workflows/e2e-test.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
50 changes: 0 additions & 50 deletions .github/workflows/python-package.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This is workflow for spell checking using PySpelling lib (https://pypi.org/project/pyspelling/)
name: Spellcheck
# Controls when the action will run.
on:
# Triggers the workflow on pull request events only if docs files have changed
pull_request:
paths: "docs/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
spellcheck:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Spellcheck
- uses: actions/checkout@v2
- uses: rojopolis/[email protected]
name: Spellcheck
Loading

0 comments on commit e6aa5e5

Please sign in to comment.