Skip to content

Commit 7b88d7c

Browse files
committed
Fix 3.11.x version in pyproject
We currently have issues with 3.12 due to pkgutil.ImpImporter being removed after being long deprecated, see python/cpython#98040 This is also a way to be in sync with the base images. Signed-off-by: Rafa Porres Molina <[email protected]>
1 parent f51fd47 commit 7b88d7c

File tree

2 files changed

+20
-422
lines changed

2 files changed

+20
-422
lines changed

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ description = "Collection of tools to reconcile services with their desired stat
55
authors = [{ name = "Red Hat App-SRE Team", email = "[email protected]" }]
66
license = { text = "Apache 2.0" }
77
readme = "README.md"
8-
requires-python = ">=3.11"
8+
requires-python = "==3.11.*"
99
classifiers = [
1010
"Development Status :: 2 - Pre-Alpha",
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
1313
"Programming Language :: Python :: 3.11",
14-
"Programming Language :: Python :: 3.12",
15-
"Programming Language :: Python :: 3.13",
1614
]
1715
dependencies = [
1816
"anymarkup>=0.7.0,<0.9.0",

0 commit comments

Comments
 (0)