Merge branch 'humbedooh/crypto' into main
This Python library contains features commonly used at the Apache Software Foundation.
(For asfpy 0.37 and below, look at our old Subversion repository)
Preparation
apt install python3.10-venvpip3 install build twineBump the version number in setup.py and run: python3 -m build
After building the asfpy package, run the following command, where $version is the new version to publish:
python3 -m twine upload dist/asfpy-$version* (for instance dist/asfpy-0.38*)
The above command will upload the .whl and the .tar.gz (the glob-asterisk is important!)
See this guide for more details on working with PyPi.
Please also create a tag for the release.
Create an account on https://test.pypi.org/, then add a token with an “all projects” scope. Place that into your .pypirc like so:
[testpypi] repository = https://test.pypi.org/legacy/ username = __token__ password = pypi-tokenstringgoeshere
Then you can test an upload with: python3 -m twine upload -r testpypi dist/asf-py$version*
The package should upload to the test.pypi.org service.