diff --git a/Cargo.lock b/Cargo.lock index f56c75b..9ee1dd3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1431,11 +1431,10 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.24.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229" +checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf" dependencies = [ - "cfg-if", "indoc", "libc", "memoffset", @@ -1449,9 +1448,9 @@ dependencies = [ [[package]] name = "pyo3-async-runtimes" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd0b83dc42f9d41f50d38180dad65f0c99763b65a3ff2a81bf351dd35a1df8bf" +checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd" dependencies = [ "futures", "once_cell", @@ -1463,9 +1462,9 @@ dependencies = [ [[package]] name = "pyo3-async-runtimes-macros" -version = "0.24.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf103ba4062fbb1e8022d9ed9b9830fbab074b2db0a0496c78e45a62f4330bcd" +checksum = "bcd7d70ee0ca1661c40407e6f84e4463ef2658c90a9e2fbbd4515b2bcdfcaeca" dependencies = [ "proc-macro2", "quote", @@ -1474,19 +1473,18 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.24.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1" +checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb" dependencies = [ - "once_cell", "target-lexicon", ] [[package]] name = "pyo3-ffi" -version = "0.24.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc" +checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be" dependencies = [ "libc", "pyo3-build-config", @@ -1494,9 +1492,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.24.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44" +checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -1506,9 +1504,9 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.24.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855" +checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b" dependencies = [ "heck", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index c26f98b..dff9da0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,6 @@ kube = { version = "^0.99.0", default-features = false, features = ["admission"] kube-derive = { version = "^0.99.0", default-features = false } # only needed to opt out of schema k8s-openapi = { version = "0.24.0", default-features = false } openssl = { version = "0.10.52", features = ["vendored"] } -pyo3-async-runtimes = { version = "=0.24.0", features = ["attributes", "tokio-runtime"] } -pyo3-ffi = "0.24.1" -pyo3 = "0.24.1" +pyo3-async-runtimes = { version = "=0.27.0", features = ["attributes", "tokio-runtime"] } +pyo3-ffi = "0.27.1" +pyo3 = "0.27.1" diff --git a/Makefile b/Makefile index 6085d1e..bf69026 100644 --- a/Makefile +++ b/Makefile @@ -71,6 +71,8 @@ release-linux: clean ## creates and release linux wheels docker run --rm -v $(PWD):/io ghcr.io/pyo3/maturin build --release -i python3.10 --out dist --strip docker run --rm -v $(PWD):/io ghcr.io/pyo3/maturin build --release -i python3.11 --out dist --strip docker run --rm -v $(PWD):/io ghcr.io/pyo3/maturin build --release -i python3.12 --out dist --strip + docker run --rm -v $(PWD):/io ghcr.io/pyo3/maturin build --release -i python3.13 --out dist --strip + docker run --rm -v $(PWD):/io ghcr.io/pyo3/maturin build --release -i python3.14 --out dist --strip maturin sdist --out dist @@ -82,12 +84,16 @@ release-macos: clean ## creates and release macos wheels maturin build --release --target aarch64-apple-darwin --zig -i python3.10 --out dist --strip maturin build --release --target aarch64-apple-darwin --zig -i python3.11 --out dist --strip maturin build --release --target aarch64-apple-darwin --zig -i python3.12 --out dist --strip + maturin build --release --target aarch64-apple-darwin --zig -i python3.13 --out dist --strip + maturin build --release --target aarch64-apple-darwin --zig -i python3.14 --out dist --strip maturin build --release -i python3.8 --out dist --strip maturin build --release -i python3.9 --out dist --strip maturin build --release -i python3.10 --out dist --strip maturin build --release -i python3.11 --out dist --strip maturin build --release -i python3.12 --out dist --strip + maturin build --release -i python3.13 --out dist --strip + maturin build --release -i python3.14 --out dist --strip twine upload dist/* @@ -97,5 +103,7 @@ release-windows: clean ## creates and release window wheels maturin build --release -i python310 --out dist --strip maturin build --release -i python311 --out dist --strip maturin build --release -i python312 --out dist --strip + maturin build --release -i python313 --out dist --strip + maturin build --release -i python314 --out dist --strip twine upload dist/* diff --git a/pyproject.toml b/pyproject.toml index f2ad5e1..2b8c37e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,9 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] license = { text = "MIT License" } keywords = ["portforward", "kubernetes", "k8s"]