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.
59 lines
1.6 KiB
59 lines
1.6 KiB
6 months ago
|
From 1a14a865a27467914be183f5465c29b36fd27f88 Mon Sep 17 00:00:00 2001
|
||
|
From: Scott Kitterman <scott@kitterman.com>
|
||
|
Date: Tue, 26 May 2020 17:03:17 -0400
|
||
|
Subject: [PATCH 1/2] Remove spurious requirement for wheel
|
||
|
|
||
|
---
|
||
|
pyproject.toml | 1 -
|
||
|
setup.py | 3 +--
|
||
|
2 files changed, 1 insertion(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/pyproject.toml b/pyproject.toml
|
||
|
index ed437acd..94baf50c 100644
|
||
|
--- a/pyproject.toml
|
||
|
+++ b/pyproject.toml
|
||
|
@@ -2,7 +2,6 @@
|
||
|
# Must be kept in sync with `setup_requirements` in `setup.py`
|
||
|
requires = [
|
||
|
"setuptools>=40.8.0",
|
||
|
- "wheel",
|
||
|
"cffi>=1.4.1; python_implementation != 'PyPy'",
|
||
|
]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
diff --git a/setup.py b/setup.py
|
||
|
index 9319c1cb..d82a7fe3 100644
|
||
|
--- a/setup.py
|
||
|
+++ b/setup.py
|
||
|
@@ -35,8 +35,7 @@
|
||
|
|
||
|
|
||
|
requirements = ["six"]
|
||
|
-setup_requirements = ["setuptools",
|
||
|
- "wheel"]
|
||
|
+setup_requirements = ["setuptools"]
|
||
|
test_requirements = ["pytest>=3.2.1,!=3.3.0",
|
||
|
"hypothesis>=3.27.0"]
|
||
|
docs_requirements = ["sphinx>=1.6.5",
|
||
|
|
||
|
From 5eb5f1e70580a386d9a95b74eda1a54af13f5e3a Mon Sep 17 00:00:00 2001
|
||
|
From: Scott Kitterman <scott@kitterman.com>
|
||
|
Date: Tue, 26 May 2020 18:44:33 -0400
|
||
|
Subject: [PATCH 2/2] Put wheel back in pyproject.toml
|
||
|
|
||
|
---
|
||
|
pyproject.toml | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/pyproject.toml b/pyproject.toml
|
||
|
index 94baf50c..ed437acd 100644
|
||
|
--- a/pyproject.toml
|
||
|
+++ b/pyproject.toml
|
||
|
@@ -2,6 +2,7 @@
|
||
|
# Must be kept in sync with `setup_requirements` in `setup.py`
|
||
|
requires = [
|
||
|
"setuptools>=40.8.0",
|
||
|
+ "wheel",
|
||
|
"cffi>=1.4.1; python_implementation != 'PyPy'",
|
||
|
]
|
||
|
build-backend = "setuptools.build_meta"
|