diff --git a/SOURCES/596.patch b/SOURCES/596.patch new file mode 100644 index 0000000..ea7f0aa --- /dev/null +++ b/SOURCES/596.patch @@ -0,0 +1,58 @@ +From 1a14a865a27467914be183f5465c29b36fd27f88 Mon Sep 17 00:00:00 2001 +From: Scott Kitterman +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 +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"