Skip to content

Commit

Permalink
Merge pull request #475 from dajiaji/add-support-for-py312
Browse files Browse the repository at this point in the history
Update tox.ini to support Python 3.12.
  • Loading branch information
dajiaji committed Nov 19, 2023
2 parents aa6783c + a19e443 commit 688605b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-package.yml
Expand Up @@ -19,8 +19,8 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -45,10 +45,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"

- name: Install poetry
run: python -m pip install poetry
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -3,7 +3,7 @@ envlist =
check
build
build_docs
py{38,39,310,311}
py{38,39,310,311,312}
isolated_build = True
skip_missing_interpreters = True

Expand All @@ -14,6 +14,7 @@ python =
3.9: py39
3.10: check, build, build_docs, py310
3.11: py311
3.12: py312


[testenv:check]
Expand Down

0 comments on commit 688605b

Please sign in to comment.