Skip to content

Commit cef6b53

Browse files
committed
ci: Stop packaging python 3.6 wheels
1 parent fcf29ac commit cef6b53

4 files changed

Lines changed: 6 additions & 16 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ "ubuntu-20.04", "macOS-10.15" ]
22-
python: [ "pypy3.7-7.3.3", "pypy3.6-7.3", "2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ]
22+
python: [ "2.7", "3.7", "3.8", "3.9", "3.10", "3.11" ]
2323
platform: [ "x86_64", "i686" ]
2424
manylinux-version: [ "1", "2010" ]
2525
macos-target: [ "10.10" ]
@@ -30,14 +30,6 @@ jobs:
3030
platform: "i686"
3131
- os: "macOS-10.15"
3232
manylinux-version: "1"
33-
- python: "pypy3.7-7.3.3"
34-
manylinux-version: "1"
35-
- python: "pypy3.6-7.3"
36-
manylinux-version: "1"
37-
- python: "pypy3.7-7.3.3"
38-
manylinux-version: "2010"
39-
- python: "pypy3.6-7.3"
40-
manylinux-version: "2010"
4133
- python: "3.10"
4234
manylinux-version: "1"
4335
- python: "3.11"
@@ -230,7 +222,7 @@ jobs:
230222
strategy:
231223
fail-fast: false
232224
matrix:
233-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
225+
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10"]
234226
architecture: ["x64"]
235227
include:
236228
- architecture: "x64"

CHANGELOG.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
Changelog
22
=========
33

4-
1.3.1 (Nov 1, 2022)
4+
1.3.1 (Nov 2, 2022)
55
-------------------
66

77
* **Fixed**: Distributed OS X wheels now include patch for libaom segmentation
88
fault (see `AOMediaCodec/libavif#1190`_ and `aom@165281`_). The bundled
99
static libaom was patched for all other wheels, but because of a build issue
1010
it was missing from the 1.3.0 mac wheels.
11+
* **CI**: Python 3.6 wheels are no longer being packaged and distributed,
12+
ahead of support being dropped in the next major release.
1113

1214
.. _AOMediaCodec/libavif#1190: https://github.com/AOMediaCodec/libavif/issues/1190
1315
.. _aom@165281: https://aomedia-review.googlesource.com/c/aom/+/165281/1

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def readme():
6161
"Programming Language :: C++",
6262
"Programming Language :: Python :: 2.7",
6363
"Programming Language :: Python :: 3",
64-
"Programming Language :: Python :: 3.6",
6564
"Programming Language :: Python :: 3.7",
6665
"Programming Language :: Python :: 3.8",
6766
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
[tox]
2-
envlist = py{27,36,37,38,39,310,py27,py36,py37}
2+
envlist = py{27,37,38,39,310,py37}
33
minversion = 1.9
44

55
[gh-actions]
66
python =
77
2.7: py27
8-
3.6: py36
98
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310
13-
pypy-2.7: pypy27
14-
pypy-3.6: pypy36
1512
pypy-3.7: pypy37
1613

1714
[testenv]

0 commit comments

Comments
 (0)