Skip to content

Commit

Permalink
Merge pull request #465 from Renumics/chore/allow-python-3.12
Browse files Browse the repository at this point in the history
Allow python 3.12
  • Loading branch information
neindochoh authored Nov 14, 2024
2 parents 0319725 + 284750d commit 783c0b5
Show file tree
Hide file tree
Showing 3 changed files with 223 additions and 93 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,33 +107,33 @@ jobs:
with:
matrix: |
os: [ubuntu-latest]
python-version: [3.8, 3.9, 3.10, 3.11]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
- name: '🧱 Build test matrix for release'
if: env.MATRIX == '' && startsWith(github.ref, 'refs/tags/v')
uses: druzsan/setup-matrix@v2
with:
matrix: |
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, 3.10, 3.11]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
- name: '🧱 Build test matrix for main branch'
if: env.MATRIX == '' && github.ref == 'refs/heads/main'
uses: druzsan/setup-matrix@v2
with:
matrix: |
os: [ubuntu-latest]
python-version: [3.8, 3.9, 3.10, 3.11]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
include:
- os: windows-latest
python-version: 3.8
python-version: 3.10
- os: macos-latest
python-version: 3.8
python-version: 3.10
- name: '🧱 Build test matrix for development branch'
if: env.MATRIX == ''
uses: druzsan/setup-matrix@v2
with:
matrix: |
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.10]
- name: Print matrix
run: echo "$MATRIX" | yq -P '{"matrix":.}'
- name: Set output
Expand Down
Loading

0 comments on commit 783c0b5

Please sign in to comment.