Skip to content

Commit 7f0d922

Browse files
authored
Bump Katib Python SDK to 0.16.0rc0 version (#2205)
1 parent 888bec3 commit 7f0d922

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

docs/release/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ This is the instruction on how to make a new release for the Katib project.
1919

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

22+
- Create a [PyPI Token](https://pypi.org/help/#apitoken) to publish Katib SDK.
23+
24+
- Add the following config to your `~/.pypirc` file:
25+
26+
```
27+
[pypi]
28+
username = __token__
29+
password = <PYPI_TOKEN>
30+
```
31+
2232
## Release Process
2333
2434
### Versioning Policy

sdk/python/v1beta1/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,13 @@
3232
# We need to always copy this file only on the SDK building stage, not on SDK installation stage.
3333
if os.path.exists(katib_grpc_api_file):
3434
shutil.copy(
35-
katib_grpc_api_file, "kubeflow/katib/katib_api_pb2.py",
35+
katib_grpc_api_file,
36+
"kubeflow/katib/katib_api_pb2.py",
3637
)
3738

3839
setuptools.setup(
3940
name="kubeflow-katib",
40-
version="0.15.0",
41+
version="0.16.0rc0",
4142
author="Kubeflow Authors",
4243
author_email="[email protected]",
4344
license="Apache License Version 2.0",

0 commit comments

Comments
 (0)