Re-tested with Click 3.2

This commit is contained in:
Ivan Kravets
2014-08-23 11:51:18 +03:00
parent 78bf6c0e23
commit 5f539fdf7b
2 changed files with 2 additions and 3 deletions

View File

@ -26,7 +26,6 @@ def get_systype():
def get_home_dir():
home_dir = expanduser("~/.platformio")
try:
config = get_project_config()
if (config.has_section("platformio") and
@ -34,7 +33,7 @@ def get_home_dir():
return config.get("platformio", "home_dir")
except NotPlatformProject:
pass
return home_dir
return expanduser("~/.platformio")
def get_source_dir():

View File

@ -1,4 +1,4 @@
click==3.1
click==3.2
colorama==0.3.1
pyserial==2.7
requests==2.3.0