-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from getindata/release-0.7.0
Release 0.7.0
- Loading branch information
Showing
61 changed files
with
4,213 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.