-
Notifications
You must be signed in to change notification settings - Fork 68
Release Instructions
Hanzhang Zeng edited this page Apr 23, 2020
·
32 revisions
Please follow these steps in order to make a release:
-
Ensure that buildbots in the dev branch are green.
-
Increase the version field in
azure.functions.__init__.py
. -
Make a TestPyPI release from the dev branch, this will be used in azure-functions-worker E2E test:
$ rm dist/* $ python setup.py sdist bdist_wheel $ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
Twine is a PyPi upload tool that can be installed with pip
Wheel is used for generating bdist_wheel on packaging
$ pip install twine wheel
You may need to setup ~/.pypirc file for your test.pypi credentials. (Instruction Here)
-
[Optional] Wait for the azure-functions-worker E2E to run with the new azure-functions library on test.pypi
- Change the
azure-functions
version in the worker repo and create a PR to the worker dev branch (e.g. Sample PR) - Ensure that buildbots are green for step 4 (tests are currently coupled between the worker and library repos)
- Push the version update to the master branch.
- Verify that the buildbots are still green.
- Create a git tag corresponding to the new version and push it.
- Make an official PyPi release:
$ rm dist/*
$ python setup.py sdist bdist_wheel
$ twine upload dist/*