mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-20 18:34:35 +00:00
SConstruct file restricts installation for python3.14. Drop this restriction here. Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru> Part-of: https://github.com/gentoo/gentoo/pull/44424 Closes: https://github.com/gentoo/gentoo/pull/44424 Signed-off-by: Sam James <sam@gentoo.org>
12 lines
455 B
Diff
12 lines
455 B
Diff
diff '--color=auto' -Naur a/SConstruct b/SConstruct
|
|
--- a/SConstruct
|
|
+++ b/SConstruct
|
|
@@ -182,7 +182,7 @@
|
|
# Python Package Settings
|
|
python_min_version = parse_version("3.8")
|
|
# Newest Python version not supported/tested by Cantera
|
|
-python_max_version = parse_version("3.14")
|
|
+python_max_version = parse_version("3.15")
|
|
# The string is used to set python_requires in setup.cfg.in
|
|
py_requires_ver_str = f">={python_min_version},<{python_max_version}"
|
|
|