File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ]
6671source = [" src" ]
You can’t perform that action at this time.
0 commit comments