diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-12-25 17:00:32 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-12-25 17:00:32 +0800 |
commit | 380948e01837aa2873a7279408675039c283f58c (patch) | |
tree | edea49d29f4a4e43bcb990e30846f8147020c5f4 /math/py-statsmodels/files | |
parent | math/py-jax: Update to 0.4.23 (diff) |
math/py-statsmodels: Update to 0.14.1
- Convert to USE_PYTHON=pep517
Changes: https://github.com/statsmodels/statsmodels/releases
https://www.statsmodels.org/stable/release/index.html
Diffstat (limited to 'math/py-statsmodels/files')
-rw-r--r-- | math/py-statsmodels/files/patch-pyproject.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/math/py-statsmodels/files/patch-pyproject.toml b/math/py-statsmodels/files/patch-pyproject.toml new file mode 100644 index 000000000000..7571e3077f7f --- /dev/null +++ b/math/py-statsmodels/files/patch-pyproject.toml @@ -0,0 +1,20 @@ +--- pyproject.toml.orig 2023-12-07 13:22:55 UTC ++++ pyproject.toml +@@ -3,14 +3,11 @@ + # INSTALL_REQUIRES in setup.py + requires = [ + "setuptools>=69.0.2; python_version>='3.12'", +- "setuptools>=63.4.3", ++ "setuptools>=63.1.0", + "cython>=0.29.33,<4", # Sync with CYTHON_MIN_VER in setup +- # Workaround for oldest supported numpy using 1.21.6, but SciPy 1.9.2+ requiring 1.22.3+ +- "oldest-supported-numpy; python_version!='3.10' or platform_system!='Windows' or platform_python_implementation=='PyPy'", +- "numpy>=1.22.3,<2; python_version=='3.10' and platform_system=='Windows' and platform_python_implementation != 'PyPy'", +- "numpy<2; python_version>='3.12'", ++ "numpy>=1.22.3,<2", + "scipy>=1.4", +- "setuptools_scm[toml]>=8,<9" ++ "setuptools_scm[toml]>=6,<9" + ] + build-backend = "setuptools.build_meta" + |