Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 679 Bytes

releases.md

File metadata and controls

44 lines (28 loc) · 679 Bytes

Releases

  1. Install twine: pip install twine

  2. Ensure tests are passing.

  3. Update version in rdmo/__init__.py.

  4. Build production front-end files

nvm use
npm install
npm run build:prod
  1. Build sdist and bdist_wheel:
python setup.py sdist bdist_wheel
  1. Upload with twine to Test PyPI:
twine upload -r testpypi dist/*
  1. Check https://test.pypi.org/project/rdmo/.

  2. Upload with twine to PyPI:

twine upload dist/*
  1. Check https://pypi.org/project/rdmo/.

  2. Commit local changes.

  3. Push changes.

  4. Create release on GitHub.