Skip to content

Commit

Permalink
Bump Katib Python SDK to 0.16.0rc0 version (kubeflow#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyvelich authored Aug 15, 2023
1 parent 888bec3 commit 7f0d922
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ This is the instruction on how to make a new release for the Katib project.

- Install `twine` to publish the SDK package: `pip install twine==3.4.1`

- Create a [PyPI Token](https://pypi.org/help/#apitoken) to publish Katib SDK.

- Add the following config to your `~/.pypirc` file:

```
[pypi]
username = __token__
password = <PYPI_TOKEN>
```
## Release Process
### Versioning Policy
Expand Down
5 changes: 3 additions & 2 deletions sdk/python/v1beta1/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@
# We need to always copy this file only on the SDK building stage, not on SDK installation stage.
if os.path.exists(katib_grpc_api_file):
shutil.copy(
katib_grpc_api_file, "kubeflow/katib/katib_api_pb2.py",
katib_grpc_api_file,
"kubeflow/katib/katib_api_pb2.py",
)

setuptools.setup(
name="kubeflow-katib",
version="0.15.0",
version="0.16.0rc0",
author="Kubeflow Authors",
author_email="premnath.vel@gmail.com",
license="Apache License Version 2.0",
Expand Down

0 comments on commit 7f0d922

Please sign in to comment.