Skip to content

Commit

Permalink
feat: add Python 3.12 support (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon committed Dec 21, 2023
1 parent 59e10f1 commit 0a5864f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.12"]
fail-fast: false
steps:
- name: Remove PR label
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: [self-hosted, linux, x64]
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.12"]
fail-fast: false
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
BLACK_VERSION = "black==22.3.0"
LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"]

SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]


@nox.session
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
platforms="Posix; MacOS X; Windows",
packages=packages,
Expand Down

0 comments on commit 0a5864f

Please sign in to comment.