Skip to content
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
30 changes: 14 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/*

Expand All @@ -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/*
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Loading