Skip to content

Commit

Permalink
Bump version, add Python version classifiers to setup.py.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/libcloud/trunk@1210248 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Kami committed Dec 4, 2011
1 parent bc3b19d commit babd81a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES
@@ -1,6 +1,7 @@
-*- coding: utf-8 -*-

Changes with Apache Libcloud in development:
Changes with Apache Libcloud 0.7.0:

*) General:

- Add support for Python 3.x.
Expand Down
2 changes: 1 addition & 1 deletion libcloud/__init__.py
Expand Up @@ -20,7 +20,7 @@
"""

__all__ = ["__version__", "enable_debug"]
__version__ = '0.6.1'
__version__ = '0.7.0'

try:
import paramiko
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Expand Up @@ -240,6 +240,13 @@ def run(self):
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2'
]
)

0 comments on commit babd81a

Please sign in to comment.