summaryrefslogtreecommitdiff
path: root/databases/py-apache-arrow/files
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2024-03-24 13:39:30 -0700
committerYuri Victorovich <yuri@FreeBSD.org>2024-03-24 14:15:31 -0700
commit5ae05226ef6e36047808e02616baf0bbc8f67367 (patch)
tree51f9b1380c7e67e70d2259fb8db41c635bb69129 /databases/py-apache-arrow/files
parentdevel/phorgeit-phorge: Remove incorrect cpe vendor (diff)
databases/py-apache-arrow: update 13.0.0 → 15.0.2
Diffstat (limited to 'databases/py-apache-arrow/files')
-rw-r--r--databases/py-apache-arrow/files/patch-pyproject.toml13
-rw-r--r--databases/py-apache-arrow/files/patch-setup.py11
2 files changed, 24 insertions, 0 deletions
diff --git a/databases/py-apache-arrow/files/patch-pyproject.toml b/databases/py-apache-arrow/files/patch-pyproject.toml
new file mode 100644
index 000000000000..923321e89970
--- /dev/null
+++ b/databases/py-apache-arrow/files/patch-pyproject.toml
@@ -0,0 +1,13 @@
+--- pyproject.toml.orig 2024-03-24 19:23:05 UTC
++++ pyproject.toml
+@@ -18,8 +18,8 @@ requires = [
+ [build-system]
+ requires = [
+ "cython >= 0.29.31",
+- "oldest-supported-numpy>=0.14",
+- "setuptools_scm < 8.0.0",
++ "numpy>=0.14",
++ "setuptools_scm",
+ "setuptools >= 40.1.0",
+ "wheel"
+ ]
diff --git a/databases/py-apache-arrow/files/patch-setup.py b/databases/py-apache-arrow/files/patch-setup.py
new file mode 100644
index 000000000000..3b820b3b1183
--- /dev/null
+++ b/databases/py-apache-arrow/files/patch-setup.py
@@ -0,0 +1,11 @@
+--- setup.py.orig 2024-03-24 19:24:16 UTC
++++ setup.py
+@@ -492,7 +492,7 @@ setup(
+ 'pyarrow/_generated_version.py'),
+ 'version_scheme': guess_next_dev_version
+ },
+- setup_requires=['setuptools_scm < 8.0.0', 'cython >= 0.29.31'] + setup_requires,
++ setup_requires=['setuptools_scm', 'cython >= 0.29.31'] + setup_requires,
+ install_requires=install_requires,
+ tests_require=['pytest', 'pandas', 'hypothesis'],
+ python_requires='>=3.8',