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 2019/12/24 21:22:49 UTC

[libcloud] branch trunk updated (e7d1293 -> 6fdcdcd)

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 e7d1293  Fix changelog formatting.
     new 8375b29  Update setup.py and drop support for Python 2.7 and Python 3 < 3.4.0.
     new c238ddd  Update tox and travis config and drop support for Python 2.7 and Python 3 < 3.4.0.
     new be4553a  Use working version.
     new 32d3dc4  Also drop Pythohn 3.4.
     new 6e5c702  Update setup.py.
     new d5239bf  Fix lint issue which arose now that we run lint targets under Python 3 and make sure all the examples are Python 3 compatiblr.
     new 02d86ab  Add missing entry to tox config.
     new 73c09c2  Use pyp3.5.
     new f37b2cb  Update pylint and astroud, update plugin so it works with newer version of astroid.
     new e0557ab  Fix various false positives and actual lint issues detected by new version of pylint.
     new 81e6c6a  Update tox config.
     new d7f28b6  Fix pylint issue.
     new 47456ad  Use latest version of coverage.
     new e10aab8  Fix failing test.
     new 1b976ed  Require Python 3.5.0.
     new be39fb9  Merge remote-tracking branch 'remotes/upstream/trunk' into drop_support_for_old_python_versions
     new 852a9f5  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into drop_support_for_old_python_versions
     new 9643324  Add changelog and upgrade notes entry.
     new 82c5512  Remove vSphere driver which doesn't support Python 3 and document that in upgrade notes, changelog and documentation.
     new eeabe19  Remove dependencies which are not needed anymore.
     new 39a4ef5  Re-generate support provider tables.
     new 0bc19c9  Add note on supported Python versions to readme.
     new fb544b0  Fix bad merge resolution, remove attributes which are not needed.
     new 18bd129  Use same version of setuptools everywhere.
     new 7b27720  Use latest version of test dependencies.
     new d76f236  Simplify travis config.
     new ebdca23  Also run tests with PyPy 3.6.
     new cb6cb63  Use user friendly travis job names.
     new 17ea54a  PyPy 3.6 is not supported by travis yet.
     new 963e5c9  Add documentation section on supported Python versions.
     new 47dada0  Merge branch 'trunk' into drop_support_for_old_python_versions
     new adab812  Signal those changes will represent v3.0.0 release.
     new 6fdcdcd  Merge pull request #1377 from Kami/drop_support_for_old_python_versions

The 7079 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:
 .travis.yml                                        |  64 +--
 CHANGES.rst                                        |  25 +
 contrib/generate_contributor_list.py               |   2 +-
 contrib/generate_provider_logos_collage_image.py   |   4 +-
 contrib/update_google_prices.py                    |   2 +
 contrib/utils_test.py                              |   2 +
 demos/gce_demo.py                                  |   2 +-
 docs/compute/_supported_methods_block_storage.rst  |   2 -
 .../_supported_methods_image_management.rst        |   2 -
 .../_supported_methods_key_pair_management.rst     |   2 -
 docs/compute/_supported_methods_main.rst           |   4 +-
 docs/compute/_supported_providers.rst              |   2 -
 docs/compute/drivers/vsphere.rst                   |  87 +---
 docs/conf.py                                       |   4 +-
 .../cloudstack/port_forwarding_management.py       |   4 +-
 .../list_nodes_across_multiple_providers.py        |   2 +-
 .../Firewall_Create_Complex_Firewall_Rule.py       |   4 +-
 docs/examples/compute/vmware_vcloud_1.5.py         |   2 +-
 docs/examples/compute/vsphere/__init__.py          |   0
 docs/examples/compute/vsphere/connect_host.py      |   8 -
 docs/examples/compute/vsphere/connect_url.py       |   8 -
 .../compute/vsphere/connect_url_custom_port.py     |   8 -
 .../dns/create_a_record_for_all_rackspace_nodes.py |   2 +-
 .../loadbalancer/create_lb_wait_for_ready.py       |   8 +-
 docs/examples/loadbalancer/elb/complete_tut.py     |  22 +-
 .../concurrent_file_download_using_gevent.py       |   4 +-
 .../create_directory_backup_stream_to_cf.py        |   4 +-
 docs/index.rst                                     |  10 +
 docs/supported_python_versions.rst                 |  28 +
 docs/upgrade_notes.rst                             |  12 +
 libcloud/__init__.py                               |   2 +-
 libcloud/common/brightbox.py                       |   1 +
 libcloud/common/gandi.py                           |   2 +
 libcloud/common/google.py                          |   2 +-
 libcloud/common/openstack_identity.py              |   4 +-
 libcloud/compute/drivers/azure.py                  |   5 +-
 libcloud/compute/drivers/azure_arm.py              |   1 -
 libcloud/compute/drivers/cloudsigma.py             |   3 +
 libcloud/compute/drivers/elastichosts.py           |   2 +
 libcloud/compute/drivers/elasticstack.py           |   2 +
 libcloud/compute/drivers/gridspot.py               |   2 +
 libcloud/compute/drivers/linode.py                 |   2 +-
 libcloud/compute/drivers/rimuhosting.py            |   2 +
 libcloud/compute/drivers/vsphere.py                | 572 ---------------------
 libcloud/compute/providers.py                      |   2 -
 libcloud/compute/ssh.py                            |   2 +-
 libcloud/compute/types.py                          |   5 +-
 libcloud/container/drivers/docker.py               |   2 +-
 libcloud/test/compute/test_ssh_client.py           |   8 +-
 libcloud/utils/py3.py                              |   4 +-
 pylint_plugins/driver_class.py                     |   2 +-
 requirements-tests.txt                             |   8 +-
 setup.py                                           |  42 +-
 tox.ini                                            |  84 +--
 54 files changed, 212 insertions(+), 879 deletions(-)
 delete mode 100644 docs/examples/compute/vsphere/__init__.py
 delete mode 100644 docs/examples/compute/vsphere/connect_host.py
 delete mode 100644 docs/examples/compute/vsphere/connect_url.py
 delete mode 100644 docs/examples/compute/vsphere/connect_url_custom_port.py
 create mode 100644 docs/supported_python_versions.rst
 delete mode 100644 libcloud/compute/drivers/vsphere.py