void-packages/srcpkgs/python3-pandas/patches/version-relaxation.patch
2023-10-06 12:13:06 -04:00

32 lines
1.3 KiB
Diff

--- ./pyproject.toml.orig 2023-10-02 14:33:56.359267774 -0400
+++ ./pyproject.toml 2023-10-02 14:35:29.662565059 -0400
@@ -2,14 +2,14 @@
# Minimum requirements for the build system to execute.
# See https://github.com/scipy/scipy/pull/12940 for the AIX issue.
requires = [
- "meson-python==0.13.1",
- "meson==1.2.1",
+ "meson-python",
+ "meson",
"wheel",
"Cython>=0.29.33,<3", # Note: sync with setup.py, environment.yml and asv.conf.json
# Note: numpy 1.25 has a backwards compatible C API by default
# we don't want to force users to compile with 1.25 though
# (Ideally, in the future, though, oldest-supported-numpy can be dropped when our min numpy is 1.25.x)
- "oldest-supported-numpy>=2022.8.16; python_version<'3.12'",
+ "numpy>=1.23.2; python_version<'3.12'",
"numpy>=1.26.0; python_version>='3.12'",
"versioneer[toml]"
]
--- ./meson.build.orig 2023-10-02 14:42:02.161816469 -0400
+++ ./meson.build 2023-09-20 15:24:13.000000000 -0400
@@ -4,7 +4,7 @@
'c', 'cpp', 'cython',
version: run_command(['generate_version.py', '--print'], check: true).stdout().strip(),
license: 'BSD-3',
- meson_version: '>=1.2.1',
+ meson_version: '>=1.2.0',
default_options: [
'buildtype=release',
'c_std=c99'