Skip to content

Commit

Permalink
Support Python 3.12 (#194)
Browse files Browse the repository at this point in the history
* Support Python 3.12

* Update dependencies
  • Loading branch information
johnthagen authored Oct 3, 2023
1 parent 2c266cf commit d0682de
Show file tree
Hide file tree
Showing 4 changed files with 224 additions and 205 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v3
- name: Install poetry
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
nox.options.sessions = ["fmt_check", "lint", "type_check", "test", "docs"]


@session(python=["3.8", "3.9", "3.10", "3.11"])
@session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
def test(s: Session) -> None:
s.install(".", "pytest", "pytest-cov", "pytest-randomly")
s.run(
Expand Down
Loading

0 comments on commit d0682de

Please sign in to comment.