Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SCSB-170] pin Python<3.13 #139

Merged
merged 1 commit into from
Aug 13, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
env: |
FFTW_DIR: /opt/homebrew/opt/fftw/lib/
targets: |
# Linux wheels
- cp3*-manylinux_x86_64
# MacOS wheels
- cp3*-macosx_x86_64
# Until we have arm64 runners, we can't automatically test arm64 wheels
- cp3*-macosx_arm64
# Linux wheels (except python 313)
- cp31[!3]-manylinux_x86_64
# MacOS wheels (except python 313)
- cp31[!3]-macosx_x86_64
# MacOS arm64 wheels (except python 313)
- cp31[!3]-macosx_arm64
sdist: true
test_command: python -c "from romanisim import ramp_fit_casertano"
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
Expand Down
Loading