Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
env: |
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') || '' }}'
CIBW_BUILD_FRONTEND: '${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && 'pip; args: --no-build-isolation') || 'build' }}'
CIBW_ENABLE: pypy
CIBW_SKIP: cp314t-*

test_extras: test
test_command: pytest --pyargs erfa
Expand All @@ -49,11 +47,10 @@ jobs:
- pp3*-macosx_x86_64
- pp3*-macosx_arm64
# Windows wheels
- cp3*win32
- cp3*win_amd64
- cp3*-win32
- cp3*-win_amd64
- cp3*-win_arm64
- pp3*-win_amd64
# Windows arm64 wheels
- cp3{11,12,13,14}-win_arm64

secrets:
pypi_token: ${{ secrets.pypi_token }}
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ text_file_format = "rst"
addopts = "--doctest-rst"
xfail_strict = true
norecursedirs = ["erfa/_dev"]

[tool.cibuildwheel]
enable = ["pypy"]
skip = [
"cp314t-*",
"cp39-win_arm64",
"cp310-win_arm64",
]