Skip to content

Releasing a new version

Rupert Bedford edited this page Oct 16, 2018 · 6 revisions
  1. Update the version in setup.py

  2. Build the wheel:

    python setup.py sdist bdist_wheel
  3. Upload to the test PyPI:

    twine upload --repository-url https://test.pypi.org/legacy/ dist/*

    https://test.pypi.org/project/pyls-black/

  4. Upload to PyPI:

    twine upload dist/*

    https://pypi.org/project/pyls-black/

  5. Create a release/tag in GitHub.

Clone this wiki locally