summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-stevedore/remove-distribute-dependency.patch
blob: 49a68de2298a8f9b19a7640c0ffa58d1c0bac57e (plain)
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
Index: stevedore-0.8/setup.py
===================================================================
--- stevedore-0.8.orig/setup.py
+++ stevedore-0.8/setup.py
@@ -1,8 +1,8 @@
 #!/usr/bin/env python
 
 # Bootstrap installation of Distribute
-import distribute_setup
-distribute_setup.use_setuptools()
+#import distribute_setup
+#distribute_setup.use_setuptools()
 
 from setuptools import setup, find_packages
 
@@ -11,8 +11,7 @@ try:
 except IOError:
     long_description = ''
 
-install_requires = ['distribute',
-                    ]
+install_requires = []
 
 setup(
     name='stevedore',