Skip to content

Commit ccce5f1

Browse files
committed
Update release docs to use twine
1 parent 06f3927 commit ccce5f1

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

tools/python/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,14 @@ Release Procedure
137137
- Push the tag to Github with:
138138
`git push <github-remote> vX.Y.Z`
139139
- Push the lite package to PyPI with:
140-
`cd python && rm -rf build && ./setup.py lite sdist bdist_wheel upload`
140+
```
141+
cd python && rm -rf build dist && ./setup.py lite sdist bdist_wheel
142+
twine check dist/*
143+
twine upload dist/*
144+
```
141145
- Push the package to PyPI with:
142-
`cd python && rm -rf build && ./setup.py sdist bdist_wheel upload`
146+
```
147+
cd python && rm -rf build dist && ./setup.py sdist bdist_wheel
148+
twine check dist/*
149+
twine upload dist/*
150+
```

0 commit comments

Comments
 (0)