From d22f01832e5122ece19485b3c3774a3814311567 Mon Sep 17 00:00:00 2001 From: Hoolean Date: Thu, 10 Oct 2024 21:35:01 +0100 Subject: [PATCH] Build wheels for Python 3.13 Replicates the update process for Python 3.12: c9946fe8afdfd5f2beaf4d3758a587c5b1dabb7d --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebc884c..56f6852 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,11 +61,11 @@ jobs: build: "pp37-manylinux* pp38-manylinux* cp310-manylinux*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 CIBW_MANYLINUX_I686_IMAGE: manylinux2010 - # the manylinux2014 image also contains pypy3.9 and CPython 3.11 and 3.12 + # the manylinux2014 image also contains pypy3.9, and CPython 3.11, 3.12 and 3.13 - os: ubuntu-latest arch: auto64 type: manylinux2014 - build: "pp39-manylinux* cp311-manylinux* cp312-manylinux*" + build: "pp39-manylinux* cp311-manylinux* cp312-manylinux* cp313-manylinux*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 CIBW_MANYLINUX_I686_IMAGE: manylinux2014 @@ -106,7 +106,7 @@ jobs: strategy: matrix: # aarch64 uses qemu so it's slow, build each py version in parallel jobs - python: [36, 37, 38, 39, 310, 311, 312] + python: [36, 37, 38, 39, 310, 311, 312, 313] arch: [aarch64] steps: - uses: actions/checkout@v2