Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpeteuil committed Feb 9, 2018
2 parents b96c716 + e194954 commit ff4d8e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dist/
__pycache__/
*.so
*~
.vscode/

# due to using testing tools
test.py
Expand Down
3 changes: 2 additions & 1 deletion mcc/cldcnct.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
from gevent.pool import Group
from gevent import monkey
import gevent
monkey.patch_all()

from libcloud.compute.types import Provider
from libcloud.compute.providers import get_driver
from libcloud.common.types import InvalidCredsError
Expand All @@ -35,7 +37,6 @@
from mcc.confdir import CONFIG_DIR
import sys

monkey.patch_all()


def get_conns(cred, providers):
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.2"
__version__ = "0.9.3"


def main():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
package_data={'mcc': ['config.ini']},
entry_points={'console_scripts': ['mcc=mcc.core:main',
'mccl=mcc.core:list_only']},
version='0.9.2',
version='0.9.3',
author="Robert Peteuil",
author_email="[email protected]",
url='https://github.com/robertpeteuil/multi-cloud-control',
Expand Down

0 comments on commit ff4d8e8

Please sign in to comment.