set your version to 1.8.2 in airflow/version.py
tag your release `git tag 1.8.2rc3`
`git clean -f`
Generate MD5/SHA512/ASC
</path to airflow source>/dev/sign.sh apache-airflow-1.9.0alpha0+incubating-source.tar.gz
Create a ~/.pypirc file:
$ cat ~/.pypirc [distutils] index-servers = pypi pypitest [pypi] username=your-username password=********* [pypitest] repository=https://test.pypi.org/legacy/ username=your-username password=********* |
(more details here.)
Set proper permissions for the pypirc file:
$ chmod 600 ~/.pypirc |
Install the package in PyPi's test environment:
$ python setup.py sdist upload -r pypitest |
Install the package in PyPi's production environment:
$ python setup.py sdist upload -r pypi |
Get a diff between the last version and the current version:
$ git log 1.8.0..1.9.0 --pretty=oneline |

Source releases:
|