Skip to content

Release Procedures

Jessie Deot edited this page Feb 25, 2019 · 1 revision

Manual upload to PyPI

Follow the steps below to upload to PyPI

  1. Make sure your clone is up to date with pyoblib master.
  2. Verify the version number in setup.py.
  3. Generate distribution archives. From the root directory, run python3 setup.py sdist bdist_wheel
  4. Install twine - python3 -m pip install --user --upgrade twine
  5. To test the distribution, upload the distribution archives to test PyPI - python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
  6. Upload the distribution archives to PyPI - python3 -m twine upload dist/*
Clone this wiki locally