Skip to content

Commit

Permalink
Merge pull request #2411 from locustio/test-and-explicitly-support-py…
Browse files Browse the repository at this point in the history
…thon-3.12

Test and explicitly support Python 3.12
  • Loading branch information
cyberw authored Oct 3, 2023
2 parents a7832cb + 49cebb9 commit ee7ddab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- { name: "flake8", python: "3.10", os: ubuntu-latest, tox: "flake8" }
- { name: "black", python: "3.10", os: ubuntu-latest, tox: "black" }
- { name: "mypy", python: "3.10", os: ubuntu-latest, tox: "mypy" }
- { name: "3.12", python: "3.12", os: ubuntu-latest, tox: py312 }
- { name: "3.11", python: "3.11", os: ubuntu-latest, tox: py311 }
- { name: "3.10", python: "3.10", os: ubuntu-latest, tox: py310 }
- { name: "3.9", python: "3.9", os: ubuntu-latest, tox: py39 }
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Testing",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
flake8
black
mypy
py{37,38,39,310,311}
py{37,38,39,310,311,312}

[flake8]
extend-exclude = build,examples/issue_*.py,src/readthedocs-sphinx-search/
Expand Down

0 comments on commit ee7ddab

Please sign in to comment.