mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 18:36:17 +03:00
Merge pull request #2516 from wiredfool/release_changes
Release Process Changes
This commit is contained in:
commit
87ae05409c
6
Makefile
6
Makefile
|
@ -84,7 +84,7 @@ release-test:
|
||||||
viewdoc
|
viewdoc
|
||||||
|
|
||||||
sdist:
|
sdist:
|
||||||
python setup.py sdist --format=gztar,zip
|
python setup.py sdist --format=gztar
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python test-installed.py
|
python test-installed.py
|
||||||
|
@ -95,10 +95,10 @@ upload-test:
|
||||||
# username:
|
# username:
|
||||||
# password:
|
# password:
|
||||||
# repository = http://test.pythonpackages.com
|
# repository = http://test.pythonpackages.com
|
||||||
python setup.py sdist --format=gztar,zip upload -r test
|
python setup.py sdist --format=gztar upload -r test
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
python setup.py sdist --format=gztar,zip upload
|
python setup.py sdist --format=gztar upload
|
||||||
|
|
||||||
readme:
|
readme:
|
||||||
viewdoc
|
viewdoc
|
||||||
|
|
30
RELEASING.md
30
RELEASING.md
|
@ -7,6 +7,7 @@ Released quarterly on the first day of January, April, July, October.
|
||||||
* [ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/1174
|
* [ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/1174
|
||||||
* [ ] Develop and prepare release in ``master`` branch.
|
* [ ] Develop and prepare release in ``master`` branch.
|
||||||
* [ ] Check [Travis CI](https://travis-ci.org/python-pillow/Pillow) and [AppVeyor CI](https://ci.appveyor.com/project/python-pillow/Pillow) to confirm passing tests in ``master`` branch.
|
* [ ] Check [Travis CI](https://travis-ci.org/python-pillow/Pillow) and [AppVeyor CI](https://ci.appveyor.com/project/python-pillow/Pillow) to confirm passing tests in ``master`` branch.
|
||||||
|
* [ ] Check that all of the wheel builds [Pillow Wheel Builder](https://github.com/python-pillow/pillow-wheels) pass the tests in TravisCI.
|
||||||
* [ ] In compliance with https://www.python.org/dev/peps/pep-0440/, update version identifier in:
|
* [ ] In compliance with https://www.python.org/dev/peps/pep-0440/, update version identifier in:
|
||||||
```
|
```
|
||||||
PIL/__init__.py setup.py _imaging.c appveyor.yml
|
PIL/__init__.py setup.py _imaging.c appveyor.yml
|
||||||
|
@ -20,12 +21,12 @@ Released quarterly on the first day of January, April, July, October.
|
||||||
$ git push --all
|
$ git push --all
|
||||||
$ git push --tags
|
$ git push --tags
|
||||||
```
|
```
|
||||||
* [ ] Create and upload source distributions e.g.:
|
* [ ] Create source distributions e.g.:
|
||||||
```
|
```
|
||||||
$ make sdist
|
$ make sdist
|
||||||
$ make upload
|
|
||||||
```
|
```
|
||||||
* [ ] Create and upload [binary distributions](#binary-distributions)
|
* [ ] Create binary distributions [binary distributions](#binary-distributions)
|
||||||
|
* [ ] Upload all binaries and source distributions with ``twine upload dist/Pillow-4.1.0-*``
|
||||||
* [ ] Manually hide old versions on PyPI such that only the latest major release is visible when viewing https://pypi.python.org/pypi/Pillow (https://pypi.python.org/pypi?:action=pkg_edit&name=Pillow)
|
* [ ] Manually hide old versions on PyPI such that only the latest major release is visible when viewing https://pypi.python.org/pypi/Pillow (https://pypi.python.org/pypi?:action=pkg_edit&name=Pillow)
|
||||||
|
|
||||||
## Point Release
|
## Point Release
|
||||||
|
@ -53,11 +54,11 @@ Released as needed for security, installation or critical bug fixes.
|
||||||
$ git tag 2.9.1
|
$ git tag 2.9.1
|
||||||
$ git push --tags
|
$ git push --tags
|
||||||
```
|
```
|
||||||
* [ ] Create and upload source distributions e.g.:
|
* [ ] Create source distributions e.g.:
|
||||||
```
|
```
|
||||||
$ make sdistup
|
$ make sdist
|
||||||
```
|
```
|
||||||
* [ ] Create and upload [binary distributions](#binary-distributions)
|
* [ ] Create [binary distributions](#binary-distributions)
|
||||||
|
|
||||||
## Embargoed Release
|
## Embargoed Release
|
||||||
|
|
||||||
|
@ -76,11 +77,11 @@ Released as needed privately to individual vendors for critical security-related
|
||||||
git push origin 2.5.x
|
git push origin 2.5.x
|
||||||
git push origin --tags
|
git push origin --tags
|
||||||
```
|
```
|
||||||
* [ ] Create and upload source distributions e.g.:
|
* [ ] Create source distributions e.g.:
|
||||||
```
|
```
|
||||||
$ make sdistup
|
$ make sdist
|
||||||
```
|
```
|
||||||
* [ ] Create and upload [binary distributions](#binary-distributions)
|
* [ ] Create [binary distributions](#binary-distributions)
|
||||||
|
|
||||||
## Binary Distributions
|
## Binary Distributions
|
||||||
|
|
||||||
|
@ -88,8 +89,8 @@ Released as needed privately to individual vendors for critical security-related
|
||||||
* [ ] Contact @cgohlke for Windows binaries via release ticket e.g. https://github.com/python-pillow/Pillow/issues/1174.
|
* [ ] Contact @cgohlke for Windows binaries via release ticket e.g. https://github.com/python-pillow/Pillow/issues/1174.
|
||||||
* [ ] Download and extract tarball from @cgohlke and ``twine upload *``.
|
* [ ] Download and extract tarball from @cgohlke and ``twine upload *``.
|
||||||
|
|
||||||
### macOS
|
### Mac and Linux
|
||||||
* [ ] Use the [Pillow macOS Wheel Builder](https://github.com/python-pillow/pillow-wheels):
|
* [ ] Use the [Pillow Wheel Builder](https://github.com/python-pillow/pillow-wheels):
|
||||||
```
|
```
|
||||||
$ git checkout https://github.com/python-pillow/pillow-wheels
|
$ git checkout https://github.com/python-pillow/pillow-wheels
|
||||||
$ cd pillow-wheels
|
$ cd pillow-wheels
|
||||||
|
@ -97,12 +98,13 @@ Released as needed privately to individual vendors for critical security-related
|
||||||
$ git submodule update
|
$ git submodule update
|
||||||
$ cd Pillow
|
$ cd Pillow
|
||||||
$ git fetch --all
|
$ git fetch --all
|
||||||
$ git commit -a -m "Pillow -> 2.9.0"
|
$ git checkout [[release tag]]
|
||||||
|
$ cd ..
|
||||||
|
$ git commit -m "Pillow -> 2.9.0" Pillow
|
||||||
$ git push
|
$ git push
|
||||||
```
|
```
|
||||||
* [ ] Download distributions from the [Pillow macOS Wheel Builder container](http://cdf58691c5cf45771290-6a3b6a0f5f6ab91aadc447b2a897dd9a.r50.cf2.rackcdn.com/) and ``twine upload *``.
|
* [ ] Download distributions from the [Pillow Wheel Builder container](http://a365fff413fe338398b6-1c8a9b3114517dc5fe17b7c3f8c63a43.r19.cf2.rackcdn.com/).
|
||||||
|
|
||||||
### Linux
|
|
||||||
|
|
||||||
## Publicize Release
|
## Publicize Release
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user