Add Python 3.11 support (#117)

This commit is contained in:
Adam Johnson 2022-10-25 21:27:23 +01:00 committed by GitHub
parent 52fd593885
commit 521814979a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jobs:
matrix:
variant: [main, onepass]
os: [macos-11.0, ubuntu-18.04, windows-2019, self-hosted-linux-arm64]
python: [3.8, 3.9, '3.10']
python: [3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v1

View File

@ -1,5 +1,9 @@
# minify-html changelog
## Pending
- [Python] Add Python 3.11 support.
## 0.10.2
- Bump [minify-js](https://github.com/wilsonzlin/minify-js) to 0.2.6.

View File

@ -17,5 +17,5 @@ crate-type = ["cdylib"]
[dependencies]
minify-html = { path = "../../rust/main" }
[dependencies.pyo3]
version = "0.13.0"
version = "0.17.2"
features = ["extension-module"]

View File

@ -17,5 +17,5 @@ crate-type = ["cdylib"]
[dependencies]
minify-html-onepass = { path = "../../rust/onepass" }
[dependencies.pyo3]
version = "0.13.0"
version = "0.17.2"
features = ["extension-module"]