Skip to content

Commit

Permalink
chore(python): add Python 3.12 in test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
stegayet committed Aug 15, 2023
1 parent 4c956c2 commit ad0a036
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
os: [ubuntu]
python: [3.7, 3.8, 3.9, '3.10', 3.11]
python: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
include:
- os: macos
python: 3.11
Expand All @@ -60,6 +60,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: install
run: |
pip install -U tox tox-gh-actions
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist=py{37,38,39,310,311,py3}{,-tf}{,-keras}, perf, check
envlist=py{37,38,39,310,311,312,py3}{,-tf}{,-keras}, perf, setup.py
isolated_build=True

[gh-actions]
Expand All @@ -14,6 +14,7 @@ python=
3.9: py39
3.10: py310
3.11: py311
3.12: py312
pypy-3.7: pypy3
[gh-actions:env]
PLATFORM=
Expand Down

0 comments on commit ad0a036

Please sign in to comment.