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:07 UTC

[libcloud] branch trunk updated (ba94921 -> a344be3)

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

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


    from ba94921  Merge pull request #1409 from Kami/gce_list_nodes_max_limit_fixes
     new d6dfda0  Remove dependencies which we don't need anymore since we only support Python >= 3.5 now.
     new f3accdd  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk
     new a344be3  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 setup.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)


[libcloud] 03/03: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
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 a344be35f1fb16dcc4f86279510e19239324c521
Merge: f3accdd ba94921
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Jan 24 09:40:29 2020 +0100

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 libcloud/compute/drivers/gce.py   | 94 +++++++++++++++++++++------------------
 libcloud/test/compute/test_gce.py |  7 +++
 2 files changed, 57 insertions(+), 44 deletions(-)


[libcloud] 02/03: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
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 f3accdda810b0a87eea303473e18df92ee9374af
Merge: d6dfda0 8e96172
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Jan 24 09:40:07 2020 +0100

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 CHANGES.rst                                        |    8 +-
 libcloud/compute/drivers/kubevirt.py               | 1153 ++++++++++++++++++++
 libcloud/compute/providers.py                      |    4 +-
 libcloud/compute/types.py                          |    2 +
 libcloud/container/drivers/kubernetes.py           |   11 +-
 libcloud/http.py                                   |    5 +-
 .../fixtures/kubevirt/_api_v1_namespaces.json      |   98 ++
 .../test/compute/fixtures/kubevirt/create_vm.json  |   83 ++
 .../fixtures/kubevirt/delete_vmi_testvm.json       |  132 +++
 .../compute/fixtures/kubevirt/get_default_vms.json |   99 ++
 .../fixtures/kubevirt/get_kube_node_lease_vms.json |   10 +
 .../fixtures/kubevirt/get_kube_public_vms.json     |   10 +
 .../fixtures/kubevirt/get_kube_system_vms.json     |   10 +
 .../fixtures/kubevirt/get_kubevirt_vms.json        |   10 +
 .../test/compute/fixtures/kubevirt/get_pods.json   |  322 ++++++
 .../compute/fixtures/kubevirt/start_testvm.json    |   85 ++
 .../compute/fixtures/kubevirt/stop_testvm.json     |   88 ++
 libcloud/test/compute/test_kubevirt.py             |  207 ++++
 18 files changed, 2326 insertions(+), 11 deletions(-)


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

Posted by to...@apache.org.
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',