You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-rasterio/SOURCES/0001-Loosen-up-build-requir...

46 lines
1.1 KiB

From b17984ad590e251b9b0fea625266a7ca153bdc31 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Wed, 8 Sep 2021 04:47:08 -0400
Subject: [PATCH] Loosen up build requirements
And drop coverage dependencies.
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
pyproject.toml | 5 ++---
setup.py | 1 -
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 95fc8d95..7d51fffc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,10 +1,9 @@
[build-system]
requires = [
- "setuptools>=67.8",
+ "setuptools>=67.7.2",
"wheel",
"cython~=3.0.2",
- "numpy>=2.0.0,<3.0; python_version >= '3.9'",
- "oldest-supported-numpy; python_version < '3.9'"
+ "numpy",
]
build-backend = "setuptools.build_meta"
diff --git a/setup.py b/setup.py
index ca7fdd50..394a56e1 100755
--- a/setup.py
+++ b/setup.py
@@ -283,7 +283,6 @@ extra_reqs = {
"boto3>=1.2.4",
"hypothesis",
"packaging",
- "pytest-cov>=2.2.0",
"pytest>=2.8.2",
"shapely ; python_version < '3.12'",
],
--
2.45.2