Skip to content

Commit a8a4b9b

Browse files
authored
Merge pull request #4522 from hugovk/release-updates
Update release process
2 parents fb41422 + 595caf3 commit a8a4b9b

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ debug:
6767
CFLAGS='-g -O0' python3 setup.py build_ext install > /dev/null
6868

6969
install-req:
70-
pip install -r requirements.txt
70+
python3 -m pip install -r requirements.txt
7171

7272
install-venv:
7373
virtualenv .

RELEASING.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ Released quarterly on January 2nd, April 1st, July 1st and October 15th.
66

77
* [ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/3154
88
* [ ] Develop and prepare release in `master` branch.
9-
* [ ] 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.
9+
* [ ] Check [GitHub Actions](https://github.com/python-pillow/Pillow/actions),
10+
[Travis CI](https://travis-ci.org/github/python-pillow/Pillow) and
11+
[AppVeyor](https://ci.appveyor.com/project/python-pillow/Pillow) to confirm
12+
passing tests in `master` branch.
1013
* [ ] Check that all of the wheel builds [Pillow Wheel Builder](https://github.com/python-pillow/pillow-wheels) pass the tests in Travis CI.
1114
* [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), update version identifier in `src/PIL/_version.py`
1215
* [ ] Update `CHANGES.rst`.
@@ -38,12 +41,19 @@ Released as needed for security, installation or critical bug fixes.
3841
git checkout -t remotes/origin/5.2.x
3942
```
4043
* [ ] Cherry pick individual commits from `master` branch to release branch e.g. `5.2.x`.
41-
* [ ] Check [Travis CI](https://travis-ci.org/python-pillow/Pillow) to confirm passing tests in release branch e.g. `5.2.x`.
44+
45+
46+
47+
* [ ] Check [GitHub Actions](https://github.com/python-pillow/Pillow/actions),
48+
[Travis CI](https://travis-ci.org/github/python-pillow/Pillow) and
49+
[AppVeyor](https://ci.appveyor.com/project/python-pillow/Pillow) to confirm
50+
passing tests in release branch e.g. `5.2.x`.
4251
* [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), update version identifier in `src/PIL/_version.py`
4352
* [ ] Run pre-release check via `make release-test`.
4453
* [ ] Create tag for release e.g.:
4554
```bash
4655
git tag 5.2.1
56+
git push
4757
git push --tags
4858
```
4959
* [ ] Create source distributions e.g.:

0 commit comments

Comments
 (0)