Skip to content

Commit

Permalink
Test against Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Jun 20, 2023
1 parent 05b1c67 commit 91204af
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy-3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", pypy-3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.7.4"
dependencies = [
Expand Down Expand Up @@ -97,7 +98,7 @@ pretty = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = pypy3, py37, py38, py39, py310, py311
envlist = pypy3, py37, py38, py39, py310, py311, py312
skip_missing_interpreters = true
minversion = 4.0
Expand Down

0 comments on commit 91204af

Please sign in to comment.