* Kept original patch author's in-line comment for reference * Updated debian/changelog accordingly, just to make sure * Added patch validation step to release protocol in README-dev
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From: paul cannon <paul@spacemonkey.com>
 | 
						|
Date: Thu, 3 Apr 2014 11:27:09 -0600
 | 
						|
Subject: don't use ez_setup
 | 
						|
 | 
						|
Debian packages aren't supposed to download stuff while building, and
 | 
						|
since the version of setuptools in stable is less than the one ez_setup
 | 
						|
wants, and since some system python packages don't ship their .egg-info
 | 
						|
directories, it might try.
 | 
						|
 | 
						|
It's ok though, we can rely on the Depends and Build-Depends for making
 | 
						|
sure python-setuptools and the various other deps are around at the right
 | 
						|
times.
 | 
						|
---
 | 
						|
 setup.py | 7 ++-----
 | 
						|
 1 file changed, 2 insertions(+), 5 deletions(-)
 | 
						|
 | 
						|
diff --git a/setup.py b/setup.py
 | 
						|
index 0c28d3d..c0fd6c1 100644
 | 
						|
--- a/setup.py
 | 
						|
+++ b/setup.py
 | 
						|
@@ -15,9 +15,6 @@
 | 
						|
 from __future__ import print_function
 | 
						|
 import sys
 | 
						|
 
 | 
						|
-import ez_setup
 | 
						|
-ez_setup.use_setuptools()
 | 
						|
-
 | 
						|
 if __name__ == '__main__' and sys.argv[1] == "gevent_nosetests":
 | 
						|
     from gevent.monkey import patch_all
 | 
						|
     patch_all()
 | 
						|
@@ -192,8 +189,8 @@
 | 
						|
         author_email='tyler@datastax.com',
 | 
						|
         packages=['cassandra', 'cassandra.io'],
 | 
						|
         include_package_data=True,
 | 
						|
-        install_requires=dependencies,
 | 
						|
-        tests_require=['nose', 'mock', 'PyYAML', 'pytz'],
 | 
						|
+        install_requires=(),
 | 
						|
+        tests_require=(),
 | 
						|
         classifiers=[
 | 
						|
             'Development Status :: 5 - Production/Stable',
 | 
						|
             'Intended Audience :: Developers',
 |