Skip to content

Commit

Permalink
ci: build and test Pyrhon 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dvarrazzo committed Oct 3, 2023
1 parent 698b8a8 commit 4722b1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
pyver: [cp37, cp38, cp39, cp310, cp311]
pyver: [cp37, cp38, cp39, cp310, cp311, cp312]

steps:
- name: Checkout repos
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pyver: [cp37, cp38, cp39, cp310, cp311]
pyver: [cp37, cp38, cp39, cp310, cp311, cp312]
arch: [aarch64, ppc64le]

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]

steps:
- name: Checkout repos
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
architecture: ['x64', 'x86']

steps:
Expand All @@ -64,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- name: Checkout repos
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = 3.7, 3.8, 3.9, 3.10, 3.11, pypy-3.8
envlist = 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.8

[testenv]
commands =
Expand All @@ -22,6 +22,9 @@ basepython = python3.10
[testenv:3.11]
basepython = python3.11

[testenv:3.12]
basepython = python3.12

[testenv:pypy-3.8]
basepython = pypy3.8

Expand Down

0 comments on commit 4722b1d

Please sign in to comment.