File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change @@ -61,3 +61,11 @@ text_file_format = "rst"
6161addopts = " --doctest-rst"
6262xfail_strict = true
6363norecursedirs = [" erfa/_dev" ]
64+
65+ [tool .cibuildwheel ]
66+ enable = [" pypy" ]
67+ skip = [
68+ " cp314t-*" ,
69+ " cp39-win_arm64" ,
70+ " cp310-win_arm64" ,
71+ ]
You can’t perform that action at this time.
0 commit comments