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