Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.03 KB

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 1.03 KB

Contributing to jcamp

Submit a patch / proposal

Your contributions and hints are welcome!

Please open an issue if you want to discuss problems or discuss improvements.

You code contributions are welcome, too. Pull requests via github are the preferred approach for these. Please take a look at the github documentation if you are new to this platform.

Publish a new release

  1. update __version__ in jcamp.py
  2. update __version__ in __init__.py
  3. update version in setup.py
  4. create a release commit: git commit -m "Release v0.1.2" jcamp.py setup.py
  5. attach a tag to the release commit: git tag v0.1.2
  6. push the commit and its tag: git push --follow-tags

In order to publish this as a package update to PyPi,

  1. First test that things are working: pip install .
  2. Create a new source distribution: python3 setup.py sdist
  3. Upload to the PyPi package index: twine upload dist/*