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/06/08 07:36:48 UTC

svn commit: r1860809 - /libcloud/site/trunk/source/index.html

Author: tomaz
Date: Sat Jun  8 07:36:48 2019
New Revision: 1860809

URL: http://svn.apache.org/viewvc?rev=1860809&view=rev
Log:
Update homepage - put Python 3 before Python 2.

Modified:
    libcloud/site/trunk/source/index.html

Modified: libcloud/site/trunk/source/index.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/source/index.html?rev=1860809&r1=1860808&r2=1860809&view=diff
==============================================================================
--- libcloud/site/trunk/source/index.html (original)
+++ libcloud/site/trunk/source/index.html Sat Jun  8 07:36:48 2019
@@ -100,7 +100,7 @@ javascript_files:
           <a href="https://libcloud.readthedocs.org/en/latest/dns/index.html">DNS</a>,
           <a href="https://libcloud.readthedocs.org/en/latest/container/index.html">Container</a>,
           <a href="https://libcloud.readthedocs.org/en/latest/backup/index.html">Backup</a></li>
-          <li>Supports <a href="/about.html#supported-python-versions">Python 2.7, PyPy and Python 3</a></li>
+          <li>Supports <a href="/about.html#supported-python-versions">Python 3, PyPy (3.x and 2.x) and Python 2.7</a></li>
         </ul>
       </div>
 
@@ -120,7 +120,7 @@ sizes = driver.list_sizes()
 images = driver.list_images()
 
 size = [s for s in sizes if s.id == 'performance1-1'][0]
-image = [i for i in images if 'Ubuntu 12.04' in i.name][0]
+image = [i for i in images if 'Ubuntu 18.04' in i.name][0]
 
 node = driver.create_node(name='libcloud', size=size, image=image)
 print(node)