Skip to content

Commit e194954

Browse files
committed
0.9.3 release
- Fix for Python 3.6 and gevent monkey.patch
1 parent 8f6b511 commit e194954

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

mcc/cldcnct.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
from gevent.pool import Group
2828
from gevent import monkey
2929
import gevent
30+
monkey.patch_all()
31+
3032
from libcloud.compute.types import Provider
3133
from libcloud.compute.providers import get_driver
3234
from libcloud.common.types import InvalidCredsError
@@ -35,7 +37,6 @@
3537
from mcc.confdir import CONFIG_DIR
3638
import sys
3739

38-
monkey.patch_all()
3940

4041

4142
def get_conns(cred, providers):

mcc/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import os
3333
import sys
3434

35-
__version__ = "0.9.2"
35+
__version__ = "0.9.3"
3636

3737

3838
def main():

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
package_data={'mcc': ['config.ini']},
6565
entry_points={'console_scripts': ['mcc=mcc.core:main',
6666
'mccl=mcc.core:list_only']},
67-
version='0.9.2',
67+
version='0.9.3',
6868
author="Robert Peteuil",
6969
author_email="robert.s.peteuil@gmail.com",
7070
url='https://github.com/robertpeteuil/multi-cloud-control',

0 commit comments

Comments
 (0)