You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2020/01/24 08:41:08 UTC

[libcloud] 01/03: Remove dependencies which we don't need anymore since we only support Python >= 3.5 now.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit d6dfda00f151f322eae77f64144a356a0025e357
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Jan 24 09:37:28 2020 +0100

    Remove dependencies which we don't need anymore since we only support
    Python >= 3.5 now.
---
 setup.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/setup.py b/setup.py
index 5b0a4de..4e028ba 100644
--- a/setup.py
+++ b/setup.py
@@ -175,9 +175,6 @@ SUPPORTED_VERSIONS = ['PyPy 3', 'Python 3.5+']
 # Reference: https://hynek.me/articles/conditional-python-dependencies/
 INSTALL_REQUIREMENTS = [
     'requests>=2.5.0',
-    'backports.ssl_match_hostname ; python_version<"2.7.9"',
-    'typing ; python_version<"3.4.0"',
-    'enum34 ; python_version<"3.4.0"',
 ]
 
 setuptools_version = tuple(setuptools.__version__.split(".")[0:2])
@@ -201,7 +198,7 @@ if PY_pre_35:
     version = '.'.join([str(x) for x in sys.version_info[:3]])
     print('Version ' + version + ' is not supported. Supported versions are: %s.'
           'Latest version which supports Python 2.7 and Python 3 < 3.5.0 is '
-          'Libcloud v2.7.0' % ', '.join(SUPPORTED_VERSIONS))
+          'Libcloud v2.8.0' % ', '.join(SUPPORTED_VERSIONS))
     sys.exit(1)
 
 
@@ -300,7 +297,6 @@ setup(
         'Programming Language :: Python',
         'Topic :: Software Development :: Libraries :: Python Modules',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',