1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From 2c10b70ae929fa88425e2a6bf98145c6c4a2bfbd Mon Sep 17 00:00:00 2001
From: Geoffrey Thomas <geofft@ldpreload.com>
Date: Wed, 24 May 2017 15:45:55 -0400
Subject: setup.py: Don't require setuptools_git
It won't work anyway in the Debian package build, and since we're not building
an sdist, it makes no difference.
---
setup.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.py b/setup.py
index dae6327..40af214 100755
--- a/setup.py
+++ b/setup.py
@@ -472,7 +472,6 @@ setup(
"Operating System :: Unix",
],
zip_safe = False,
- setup_requires=['setuptools_git'],
tests_require=['pytest', 'unittest2'],
ext_modules = ext_modules(),
|