Skip to content

Commit 916307e

Browse files
committed
Attempt to generate wheels for Python 3.10
1 parent 56b6fd0 commit 916307e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/cibuildwheels.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@ jobs:
3636
# Linux x86_64 builds
3737
- os: ubuntu-latest
3838
arch: x86_64
39-
cibw_pattern: "cp3{11,12,13}-manylinux*"
39+
cibw_pattern: "cp3{10,11,12,13}-manylinux*"
4040
artifact_name: "linux-x86_64"
4141

4242
# Linux ARM64 builds (native runners)
4343
- os: ubuntu-24.04-arm
4444
arch: aarch64
45-
cibw_pattern: "cp3{11,12,13}-manylinux*"
45+
cibw_pattern: "cp3{10,11,12,13}-manylinux*"
4646
artifact_name: "linux-aarch64"
4747
# Don't use native runners for now (looks like wait times are too long)
4848
#runs-on: ["ubuntu-latest", "arm64"]
4949

5050
# Windows builds
5151
- os: windows-latest
5252
arch: x86_64
53-
cibw_pattern: "cp3{11,12,13}-win64"
53+
cibw_pattern: "cp3{10,11,12,13}-win64"
5454
artifact_name: "windows-x86_64"
5555

5656
# macOS builds (universal2)
5757
- os: macos-latest
5858
arch: x86_64
59-
cibw_pattern: "cp3{11,12,13}-macosx*"
59+
cibw_pattern: "cp3{10,11,12,13}-macosx*"
6060
artifact_name: "macos-universal2"
6161
steps:
6262
- name: Checkout repo

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ classifiers = [
2424
"Operating System :: Microsoft :: Windows",
2525
"Operating System :: Unix",
2626
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.10",
2728
"Programming Language :: Python :: 3.11",
2829
"Programming Language :: Python :: 3.12",
2930
"Programming Language :: Python :: 3.13",
3031
]
31-
requires-python = ">=3.11"
32+
requires-python = ">=3.10"
3233
# Follow guidelines from https://scientific-python.org/specs/spec-0000/
3334
dependencies = [
3435
"numpy>=1.26",

0 commit comments

Comments
 (0)