Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 442 Bytes

RELEASE.md

File metadata and controls

29 lines (21 loc) · 442 Bytes
  • To release a new version of odysis on NPM:
git clean -fdx

npm version patch/minor/major
npm install
npm publish
  • To release a new version of odysis on PyPI:

Update _version.py git add the _version.py file and git commit

python setup.py sdist upload
python setup.py bdist_wheel

# Upload on PyPi
twine upload dist/*
git tag -a X.X.X -m 'comment'

git push origin/upstream master
git push origin/upstream X.X.X