Skip to content

Commit

Permalink
Merge pull request #19 from fonttools/py311
Browse files Browse the repository at this point in the history
Support Python 3.11
  • Loading branch information
anthrotype authored Nov 15, 2022
2 parents eecfe3d + 06a50a1 commit 70ea411
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,20 @@ jobs:
build: "cp{37,38,39}-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_MANYLINUX_I686_IMAGE: manylinux1
# the manylinux2010 image also contains python 3.10
# the manylinux2010 image also contains python 3.10 and pypy3.7 and 3.8
- os: ubuntu-latest
arch: auto
type: manylinux2010
build: "pp* cp310-*"
build: "pp{37,38}-* cp310-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
CIBW_MANYLINUX_I686_IMAGE: manylinux2010
# the manylinux2014 image also contains python 3.11 and pypy3.9
- os: ubuntu-latest
arch: auto
type: manylinux2014
build: "pp39-* cp311-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014

- os: macos-latest
arch: universal2
Expand Down Expand Up @@ -99,7 +106,7 @@ jobs:
strategy:
matrix:
# aarch64 uses qemu so it's slow, build each py version in parallel jobs
python: [37, 38, 39, 310]
python: [37, 38, 39, 310, 311]
arch: [aarch64]
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

0 comments on commit 70ea411

Please sign in to comment.