Skip to content

Commit

Permalink
v0.9.7 add python3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpeteuil committed Aug 20, 2018
1 parent ac1c6f3 commit 3f0cc04
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
4 changes: 1 addition & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ This utility can be executed with two different commands:
Supported Python versions & Platforms
-------------------------------------

Python 2.7, 3.4, 3.5, 3.6

- Python 3.7 NOT yet supported due to ``gevent`` library incompatabilities
Python 2.7, 3.4, 3.5, 3.6, 3.7

Platforms:

Expand Down
2 changes: 1 addition & 1 deletion mcc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import os
import sys

__version__ = "0.9.6"
__version__ = "0.9.7"


def main():
Expand Down
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

INSTALL_REQUIRES = ['apache-libcloud>=2.0.0',
'blessed>=1.14.2',
'colorama>=0.3.9',
'configparser>=3.5.0',
'future>=0.14',
'gevent>=1.2.2',
'pycrypto>=2.6.1',
'PrettyTable>=0.7.2']
INSTALL_REQUIRES = ['apache-libcloud >= 2.0.0',
'blessed >= 1.14.2',
'gevent >= 1.3.6; python_version>="3.7"',
'gevent >= 1.2.2; python_version<"3.7"',
'colorama >= 0.3.9',
'configparser >= 3.5.0',
'future >= 0.14',
'pycrypto >= 2.6.1',
'PrettyTable >= 0.7.2']

EXTRAS_REQUIRE = {
":python_full_version<'2.7.9'": [
Expand Down Expand Up @@ -64,7 +65,7 @@
package_data={'mcc': ['config.ini']},
entry_points={'console_scripts': ['mcc=mcc.core:main',
'mccl=mcc.core:list_only']},
version='0.9.6',
version='0.9.7',
author="Robert Peteuil",
author_email="[email protected]",
url='https://github.com/robertpeteuil/multi-cloud-control',
Expand Down

0 comments on commit 3f0cc04

Please sign in to comment.