hc
2024-11-01 a01b5c9f91adaee088a817861603a5dbe14775c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 44fb453931c611d4822343debe902cca8e1c8afe Mon Sep 17 00:00:00 2001
From: Scott Kitterman <sklist@kitterman.com>
Date: Tue, 26 May 2020 20:08:16 -0400
Subject: [PATCH] Remove spurious requirement for wheel (#596)
 
* Remove spurious requirement for wheel
 
* Put wheel back in pyproject.toml
 
Co-authored-by: Scott Kitterman <scott@kitterman.com>
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[james.hilliard1@gmail.com: backport from upstream commit
44fb453931c611d4822343debe902cca8e1c8afe]
---
 setup.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 
diff --git a/setup.py b/setup.py
index 9319c1c..d82a7fe 100644
--- a/setup.py
+++ b/setup.py
@@ -35,8 +35,7 @@ except ImportError:
 
 
 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",
-- 
2.25.1