Skip to content

Commit b30857d

Browse files
authored
Merge pull request #186 from neutrinoceros/whl/simplify-conf
MNT: simplify configuration for windows arm64 wheels
2 parents 5363ae0 + bcc42d9 commit b30857d

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ jobs:
3131
env: |
3232
CIBW_BEFORE_BUILD: '${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && 'pip install --pre setuptools setuptools_scm wheel jinja2 numpy') || '' }}'
3333
CIBW_BUILD_FRONTEND: '${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && 'pip; args: --no-build-isolation') || 'build' }}'
34-
CIBW_ENABLE: pypy
35-
CIBW_SKIP: cp314t-*
3634
3735
test_extras: test
3836
test_command: pytest --pyargs erfa
@@ -49,11 +47,10 @@ jobs:
4947
- pp3*-macosx_x86_64
5048
- pp3*-macosx_arm64
5149
# Windows wheels
52-
- cp3*win32
53-
- cp3*win_amd64
50+
- cp3*-win32
51+
- cp3*-win_amd64
52+
- cp3*-win_arm64
5453
- pp3*-win_amd64
55-
# Windows arm64 wheels
56-
- cp3{11,12,13,14}-win_arm64
5754
5855
secrets:
5956
pypi_token: ${{ secrets.pypi_token }}

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,11 @@ text_file_format = "rst"
6161
addopts = "--doctest-rst"
6262
xfail_strict = true
6363
norecursedirs = ["erfa/_dev"]
64+
65+
[tool.cibuildwheel]
66+
enable = ["pypy"]
67+
skip = [
68+
"cp314t-*",
69+
"cp39-win_arm64",
70+
"cp310-win_arm64",
71+
]

0 commit comments

Comments
 (0)