Skip to content

Commit e52a339

Browse files
authored
bump minimum python version (#230)
1 parent 77e16ee commit e52a339

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

mitmproxy-linux/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "mitmproxy_linux"
7-
requires-python = ">=3.10"
7+
requires-python = ">=3.12"
88
classifiers = [
99
"Programming Language :: Rust",
1010
"Programming Language :: Python :: Implementation :: CPython",

mitmproxy-macos/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "mitmproxy-macos"
77
dynamic = ["version"]
88
license = "MIT"
9-
requires-python = ">=3.10"
9+
requires-python = ">=3.12"
1010
readme = "README.md"
1111

1212
[project.urls]

mitmproxy-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ anyhow = { version = "1.0.93", features = ["backtrace"] }
2121
data-encoding = "2.7.0"
2222
log = "0.4.25"
2323
once_cell = "1"
24-
pyo3 = { version = "0.23", features = ["abi3", "abi3-py310", "anyhow"] }
24+
pyo3 = { version = "0.23", features = ["abi3", "abi3-py312", "anyhow"] }
2525
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime", "testing", "attributes"] }
2626
pyo3-log = "0.12.0"
2727
rand_core = { version = "0.6.4", features = ["getrandom"] }

mitmproxy-rs/pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ build-backend = "maturin"
55
[project]
66
name = "mitmproxy_rs"
77
dynamic = ["version"]
8-
requires-python = ">=3.10"
8+
requires-python = ">=3.12"
99
classifiers = [
1010
"Programming Language :: Rust",
1111
"Programming Language :: Python :: Implementation :: CPython",
1212
"Programming Language :: Python :: Implementation :: PyPy",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.10",
15-
"Programming Language :: Python :: 3.11",
1614
"Programming Language :: Python :: 3.12",
1715
"Programming Language :: Python :: 3.13",
1816
"Development Status :: 5 - Production/Stable",

mitmproxy-windows/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "mitmproxy-windows"
77
dynamic = ["version"]
88
license = "LGPL-3.0-or-later"
9-
requires-python = ">=3.10"
9+
requires-python = ">=3.12"
1010
readme = "README.md"
1111

1212
[project.urls]

0 commit comments

Comments
 (0)