Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Python 3.12. #475

Merged
merged 3 commits into from Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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