gentoo-ebuilds/sci-libs/cantera/files/cantera-3.1.0_enable_py3.14_packaging.patch
Sergey Torokhov ea8054125e
sci-libs/cantera: 3.1.0-r1, fix py3.14 installation
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>
2025-11-02 05:22:29 +00:00

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}"