Switch to stable PlatformIO

This commit is contained in:
Ivan Kravets
2017-06-26 18:04:40 +03:00
parent 1ee53137ec
commit 820efaeb21

View File

@ -112,11 +112,11 @@ def install_pip():
def install_platformio():
r = None
# cmd = ["pip", "install", "-U", "platformio"]
cmd = [
"pip", "install", "-U",
"https://github.com/platformio/platformio-core/archive/develop.zip"
]
cmd = ["pip", "install", "-U", "platformio"]
# cmd = [
# "pip", "install", "-U",
# "https://github.com/platformio/platformio-core/archive/develop.zip"
# ]
try:
r = exec_python_cmd(cmd)
assert r['returncode'] == 0