Skip to content

Commit ff4d8e8

Browse files
committed
Merge branch 'develop'
2 parents b96c716 + e194954 commit ff4d8e8

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ dist/
77
__pycache__/
88
*.so
99
*~
10+
.vscode/
1011

1112
# due to using testing tools
1213
test.py

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)