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

Add CI job testing on python 3.13 #2687

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the change to a pinned version of ubuntu? Is that a restriction from numba?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To fix the warning: "WARNING: ubuntu-latest will soon be ubuntu-24.04".

I think in general it's better to be specific here and update ones newer versions are available

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -41,33 +41,33 @@ jobs:
matrix:
include:
- name: Linux (3.10, mamba)
os: ubuntu-latest
os: ubuntu-24.04
python-version: "3.10"
install-method: mamba
extras: tests,all

- name: Linux (3.10, pip)
os: ubuntu-latest
python-version: "3.10"
install-method: pip
extras: tests,all

- name: Linux (3.11, pip, minimal-dependencies)
os: ubuntu-latest
os: ubuntu-24.04
python-version: "3.11"
install-method: pip
extras: tests

- name: Linux (3.12, mamba, coverage)
os: ubuntu-latest
- name: Linux (3.12, pip, coverage)
os: ubuntu-24.04
python-version: "3.12"
install-method: mamba
install-method: pip
extra-args: ["codecov"]
extras: tests,all

- name: Linux (3.12, pip)
os: ubuntu-latest
- name: Linux (3.12, mamba)
os: ubuntu-24.04
python-version: "3.12"
install-method: mamba
extras: tests,all

- name: Linux (3.13, pip)
os: ubuntu-24.04
python-version: "3.13"
install-method: pip
extras: tests,all

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
sonar_env

docs:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading