Skip to content

Commit

Permalink
Enable Python 3.12 for tests and in CI. (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-k authored Oct 25, 2023
1 parent 06c4aff commit 42caebf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
include:
- os: "ubuntu-latest"
python-version: "3.11"
python-version: "3.12"
coverage-report: true

runs-on: "${{ matrix.os }}"
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --quiet --upgrade pip
python -m pip install --quiet tox tox-gh-actions==3.0.0b1
python -m pip install --quiet tox tox-gh-actions
- name: Compile latest package dependencies
# generates requirements.txt which is used to detect package updates in
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = [
'version',
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
requires =
tox>=4.2
env_list =
py312
py311
py310

Expand Down

0 comments on commit 42caebf

Please sign in to comment.