Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Declare compatibility with Python 3.12 #620

Merged
merged 2 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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