We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5a91e commit 368f2a3Copy full SHA for 368f2a3
docs/releasing-to-PyPI.md
@@ -0,0 +1,10 @@
1
+```bash
2
+py -m pip install --upgrade build
3
+# Remove master omz_tools. Will use one from openvino-dev
4
+sed -i '/omz_tools/d' model_api/python/requirements.txt
5
+py -m build --sdist --wheel model_api/python/
6
+py -m twine upload --username __token__ model_api/python/dist/*
7
+git tag X.Y.Z
8
+git push upstream X.Y.Z
9
+```
10
+Pull request to increment `version` in `setup.py` for the next release.
0 commit comments