You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASING.md
+10-23Lines changed: 10 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,7 @@ Released quarterly on January 2nd, April 1st, July 1st and October 15th.
20
20
git tag 5.2.0
21
21
git push --tags
22
22
```
23
-
*[ ] Create [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
24
-
*[ ] Check and upload all source and binary distributions e.g.:
25
-
```bash
26
-
python3 -m twine check --strict dist/*
27
-
python3 -m twine upload dist/Pillow-5.2.0*
28
-
```
23
+
*[ ] Create and upload all [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
29
24
*[ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases)
30
25
*[ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/),
31
26
increment and append `.dev0` to version identifier in `src/PIL/_version.py` and then:
@@ -55,12 +50,7 @@ Released as needed for security, installation or critical bug fixes.
55
50
```bash
56
51
make sdist
57
52
```
58
-
*[ ] Create [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
59
-
*[ ] Check and upload all source and binary distributions e.g.:
60
-
```bash
61
-
python3 -m twine check --strict dist/*
62
-
python3 -m twine upload dist/Pillow-5.2.1*
63
-
```
53
+
*[ ] Create and upload all [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
64
54
*[ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases) and then:
65
55
```bash
66
56
git push
@@ -82,26 +72,23 @@ Released as needed privately to individual vendors for critical security-related
82
72
git tag 2.5.3
83
73
git push origin --tags
84
74
```
85
-
*[ ] Create and check source distribution:
86
-
```bash
87
-
make sdist
88
-
```
89
-
*[ ] Create [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
75
+
*[ ] Create and upload all [source and binary distributions](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md#source-and-binary-distributions)
90
76
*[ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases) and then:
91
77
```bash
92
78
git push origin 2.5.x
93
79
```
94
80
95
81
## Source and Binary Distributions
96
82
97
-
*[ ] Download sdist and wheels from the [GitHub Actions "Wheels" workflow](https://github.com/python-pillow/Pillow/actions/workflows/wheels.yml)
98
-
and copy into `dist/`. For example using [GitHub CLI](https://github.com/cli/cli):
83
+
*[ ] Check the [GitHub Actions "Wheels" workflow](https://github.com/python-pillow/Pillow/actions/workflows/wheels.yml)
84
+
has passed, including the "Upload release to PyPI" job. This will have been triggered
85
+
by the new tag.
86
+
*[ ] Download the Linux aarch64 wheels created by Travis CI from [GitHub releases](https://github.com/python-pillow/Pillow/releases)
87
+
and copy into `dist`. Check and upload them e.g.:
99
88
```bash
100
-
gh run download --dir dist
101
-
# select dist
89
+
python3 -m twine check --strict dist/*
90
+
python3 -m twine upload dist/Pillow-5.2.0*
102
91
```
103
-
*[ ] Download the Linux aarch64 wheels created by Travis CI from [GitHub releases](https://github.com/python-pillow/Pillow/releases)
0 commit comments