Skip to content

Commit

Permalink
declare compatibility with Python 3.12 (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils authored Sep 6, 2023
1 parent de66a46 commit 43646e6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
py: 3.12.0-alpha - 3.12.0
- os: windows-latest
py: 3.11.2
py: 3.12.0-rc.1 - 3.12.0
args: --cov-fail-under=100
- os: macos-latest
py: 3.11.2
py: 3.12.0-rc.1 - 3.12.0
args: --cov-fail-under=100
- os: ubuntu-latest
py: 3.11.2
py: 3.12.0-rc.1 - 3.12.0
args: --cov-fail-under=100
- os: ubuntu-latest
py: 3.10.10
py: 3.11.5
- os: ubuntu-latest
py: 3.10.13
- os: ubuntu-latest
py: 3.9.16
py: 3.9.18
- os: ubuntu-latest
py: 3.8.16
py: 3.8.18
uses: mhils/workflows/.github/workflows/python-tox.yml@main
with:
cmd: tox -e py -- -vvv ${{ matrix.args }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

<!-- ✨ You do not need to add a pull request reference or an author, this will be added automatically by CI. ✨ -->

- Add compatibility with Python 3.12
([#620](https://github.com/mitmproxy/pdoc/pull/620), @mhils)
- pdoc now also picks up docstrings from `.pyi` stub files.
([#619](https://github.com/mitmproxy/pdoc/pull/619), @mhils)
- Fix horizontal scroll navigation z-index issue.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]

Expand Down

0 comments on commit 43646e6

Please sign in to comment.