Skip to content

Commit

Permalink
ci: Add Python 3.12 to testing matrix (#282)
Browse files Browse the repository at this point in the history
* ci: Add Python 3.12 to testing matrix

* Update the CI to also test Python 3.12 and use it as a default in
  situations where only one version is tested.

* only test 3.8 and 3.12

* only test 3.8 and 3.12

---------

Co-authored-by: Lindsey Gray <[email protected]>
  • Loading branch information
matthewfeickert and lgray authored Feb 28, 2024
1 parent c226a36 commit 021f13e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ task:
memory: 6G
matrix:
- image: python:3.8
- image: python:3.11
- image: python:3.12

install_build_dependencies_script: |
apt-get update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.12"]
runs-on: [ubuntu-latest, macos-latest]
arch: [auto64]
steps:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python: [311]
python: [312]
arch: [auto64]

steps:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [38, 39, 310, 311]
python: [38, 39, 310, 311, 312]
os: [ubuntu-latest, macos-latest]
arch: [auto64]
include:
Expand All @@ -45,6 +45,9 @@ jobs:
- python: 311
os: ubuntu-latest
arch: aarch64
- python: 312
os: ubuntu-latest
arch: aarch64

steps:
- uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 021f13e

Please sign in to comment.