File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,16 @@ This is the instruction on how to make a new release for the Katib project.
19
19
20
20
- Install ` twine ` to publish the SDK package: ` pip install twine==3.4.1 `
21
21
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
+
22
32
## Release Process
23
33
24
34
### Versioning Policy
Original file line number Diff line number Diff line change 32
32
# We need to always copy this file only on the SDK building stage, not on SDK installation stage.
33
33
if os .path .exists (katib_grpc_api_file ):
34
34
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" ,
36
37
)
37
38
38
39
setuptools .setup (
39
40
name = "kubeflow-katib" ,
40
- version = "0.15.0 " ,
41
+ version = "0.16.0rc0 " ,
41
42
author = "Kubeflow Authors" ,
42
43
43
44
license = "Apache License Version 2.0" ,
You can’t perform that action at this time.
0 commit comments