Skip to content

Commit 680bd14

Browse files
committed
Explicitly specify the Python versions for which wheels will be generated.
1 parent 9b54fb3 commit 680bd14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
output-dir: dist
5252
env:
5353
CIBW_ARCHS: ${{ matrix.arch }}
54+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
5455
CIBW_BEFORE_ALL_LINUX: |
5556
if [[ ! -z "$(which yum)" ]]; then
5657
yum install -y make gcc perl-core pcre-devel wget zlib-devel git automake
@@ -66,7 +67,6 @@ jobs:
6667
CIBW_BEFORE_ALL_WINDOWS: ${{ matrix.before }}
6768
CIBW_BUILD_FRONTEND: build
6869
CIBW_ENVIRONMENT: ${{ matrix.env }}
69-
CIBW_SKIP: cp36-*
7070
CIBW_TEST_SKIP: "*-macosx_universal2:arm64"
7171
CIBW_TEST_COMMAND: python {package}/tests.py
7272

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
output-dir: dist
5454
env:
5555
CIBW_ARCHS: ${{ matrix.arch }}
56+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
5657
CIBW_BEFORE_ALL_LINUX: |
5758
if [[ ! -z "$(which yum)" ]]; then
5859
yum install -y make gcc perl-core pcre-devel wget zlib-devel git automake
@@ -68,7 +69,6 @@ jobs:
6869
CIBW_BEFORE_ALL_WINDOWS: ${{ matrix.before }}
6970
CIBW_BUILD_FRONTEND: build
7071
CIBW_ENVIRONMENT: ${{ matrix.env }}
71-
CIBW_SKIP: cp36-*
7272
CIBW_TEST_SKIP: "*-macosx_universal2:arm64"
7373
CIBW_TEST_COMMAND: python {package}/tests.py
7474

0 commit comments

Comments
 (0)