10000 CI: Add 3.13-nogil build by effigies · Pull Request #1339 · nipy/nibabel · GitHub
[go: up one dir, main page]

Skip to content

CI: Add 3.13-nogil build #1339

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

Merged
merged 5 commits into from
Jul 12, 2024
Merged
Changes from 1 commit
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
Next Next commit
CI: Add 3.13-nogil build
  • Loading branch information
effigies committed Jul 11, 2024
commit 07db76b966020b26b636e5fd94b79b8b04b440ab
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
38A9
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ jobs:
- os: ubuntu-latest
python-version: 3.8
dependencies: 'min'
# NumPy 2.0
# NoGIL
- os: ubuntu-latest
python-version: '3.12'
python-version: '3.13-dev'
dependencies: 'dev'
exclude:
# x86 for Windows + Python<3.12
Expand Down Expand Up @@ -168,11 +168,18 @@ jobs:
submodules: recursive
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
if: "!endsWith(matrix.python-version, '-dev')"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
allow-prereleases: true
- name: Set up Python ${{ matrix.python-version }}
if: endsWith(matrix.python-version, '-dev')
uses: deadsnakes/action@v3.1.0
with:
python-version: ${{ matrix.python-version }}
nogil: true
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install tox
Expand Down
0