Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 297 Bytes

guide-to-publish.md

File metadata and controls

18 lines (15 loc) · 297 Bytes

How to publish to PyPi

  1. If present delete dist folder

  2. If not done yet, install build and twine via

pip install build twine
  1. Update the version in modflowapi/version.py

  2. Re-create the wheels:

python -m build
  1. Re-upload the new files:
twine upload dist/*