Skip to content

Commit

Permalink
drop support for python 3.7, add 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Sep 7, 2023
1 parent 08d635c commit bc4cc7d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,39 +46,39 @@ jobs:
os: [macos-latest, windows-latest]
arch: [auto64]
build: ["*"]
skip: ["cp36-* pp*"]
skip: ["cp36-* cp37-* pp*"]
include:
# the manylinux1 docker images only contain from python3.7 to 3.9
# the manylinux1 docker images only contain python3.8 and 3.9
- os: ubuntu-latest
type: manylinux1
arch: auto64
build: "cp{37,38,39}-manylinux*"
build: "cp{38,39}-manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_MANYLINUX_I686_IMAGE: manylinux1
# the manylinux2010 image also contains CPython 3.10, and pypy-3.7 and 3.8
# the manylinux2010 image also contains CPython 3.10, and pypy-3.8
- os: ubuntu-latest
arch: auto64
type: manylinux2010
build: "pp37-manylinux* pp38-manylinux* cp310-manylinux*"
build: "pp38-manylinux* cp310-manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
CIBW_MANYLINUX_I686_IMAGE: manylinux2010
# the manylinux2014 image contains pypy-3.9 and CPython 3.11
# the manylinux2014 image contains pypy-3.9 and CPython 3.11 and 3.12
- os: ubuntu-latest
arch: auto64
type: manylinux2014
build: "pp39-manylinux* cp311-manylinux*"
build: "pp39-manylinux* cp311-manylinux* cp312-manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014

- os: macos-latest
arch: universal2
build: "*"
skip: "cp36-* pp*"
skip: "cp36-* cp37-* pp*"

- os: windows-latest
arch: auto32
build: "*"
skip: "cp36-* pp*"
skip: "cp36-* cp37-* pp*"
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
strategy:
matrix:
# aarch64 uses qemu so it's slow, build each py version in parallel jobs
python: [37, 38, 39, 310, 311]
python: [38, 39, 310, 311, 312]
arch: [aarch64]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def build_extension(self, ext):
install_requires=[
"fonttools>=4",
],
python_requires=">=3.6",
python_requires=">=3.8",
entry_points={
'console_scripts': [
"compreffor = compreffor.__main__:main",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{7,8,9,10,11}
envlist = py3{8,9,10,11,12}

[testenv]
deps =
Expand Down

0 comments on commit bc4cc7d

Please sign in to comment.