View | Details | Raw Unified | Return to bug 201901
Collapse All | Expand All

(-)/usr/home/pi/myp/net/py-libcloud/files/patch-setup.py (+29 lines)
Line 0 Link Here
1
--- setup.py.orig	2014-11-19 16:00:24 UTC
2
+++ setup.py
3
@@ -47,7 +47,6 @@ DOC_TEST_MODULES = ['libcloud.compute.dr
4
 SUPPORTED_VERSIONS = ['2.5', '2.6', '2.7', 'PyPy', '3.x']
5
 
6
 TEST_REQUIREMENTS = [
7
-    'backports.ssl_match_hostname',
8
     'mock'
9
 ]
10
 
11
@@ -222,10 +221,6 @@ class CoverageCommand(Command):
12
 
13
 forbid_publish()
14
 
15
-install_requires = ['backports.ssl_match_hostname']
16
-if pre_python26:
17
-    install_requires.extend(['ssl', 'simplejson'])
18
-
19
 setup(
20
     name='apache-libcloud',
21
     version=read_version_string(),
22
@@ -234,7 +229,6 @@ setup(
23
                 ' and documentation, please see http://libcloud.apache.org',
24
     author='Apache Software Foundation',
25
     author_email='dev@libcloud.apache.org',
26
-    install_requires=install_requires,
27
     packages=get_packages('libcloud'),
28
     package_dir={
29
         'libcloud': 'libcloud',

Return to bug 201901