We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version='X.X', download_url='https://github.com/cgre-aachen/gempy/archive/X.X.tar.gz',
$ git tag X.X -m "Add X.X tag for PyPI"
$ git push --tags origin master
python3 setup.py sdist bdist_wheel
twine upload dist/*
The text was updated successfully, but these errors were encountered:
Leguark
No branches or pull requests
set version number in setup.py, both for version and in download_url, also in the config file of the documentation
version='X.X',
download_url='https://github.com/cgre-aachen/gempy/archive/X.X.tar.gz',
add new tag
$ git tag X.X -m "Add X.X tag for PyPI"
push git tag
$ git push --tags origin master
upload newest version to PyPi
First create the dist
python3 setup.py sdist bdist_wheel
Second upload the distributions
twine upload dist/*
The text was updated successfully, but these errors were encountered: