Skip to content

Commit ba5d66f

Browse files
authored
Merge pull request #387 from Unidata/ftwheels
enable cp314t wheels
2 parents dc771c5 + 883def4 commit ba5d66f

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,13 @@ jobs:
4545
- name: Build just oldest and newest on PRs, all on tags
4646
shell: bash
4747
# - Always omit musllinux_aarch64 because it's slow and niche
48-
# - Always skip free-threading wheels for now
4948
# - On PPs, omit musllinux for speed
5049
# - On PRs, run just oldest and newest Python versions
5150
run: |
5251
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
53-
CIBW_SKIP="cp311-* cp312-* cp313-* cp314t-* *musllinux*"
52+
CIBW_SKIP="cp311-* cp312-* cp313-* *musllinux*"
5453
else
55-
CIBW_SKIP="cp314t-* *musllinux_aarch64"
54+
CIBW_SKIP="*musllinux_aarch64"
5655
fi
5756
# skip cp310 if building on windows arm64
5857
if [[ "${{ matrix.arch }}" == "ARM64" ]]; then

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ doctest_optionflags = [
6161
"NORMALIZE_WHITESPACE",
6262
"ELLIPSIS",
6363
]
64+
filterwarnings = [
65+
"error",
66+
"ignore::UserWarning",
67+
"ignore::RuntimeWarning",
68+
]
6469

6570
[tool.coverage.run]
6671
source = ["src"]

0 commit comments

Comments
 (0)