mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-31 18:44:27 +02:00
Move to latest version of SCons
This commit is contained in:
@@ -73,16 +73,20 @@ def install_pip():
|
|||||||
|
|
||||||
|
|
||||||
def install_pypi_packages(packages):
|
def install_pypi_packages(packages):
|
||||||
for p in packages:
|
for pipargs in packages:
|
||||||
print (exec_python_cmd(["-m", "pip", "install", "-U"] + p.split()))
|
print (exec_python_cmd(["-m", "pip", "install", "-U"] + pipargs))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
steps = [
|
steps = [
|
||||||
("Fixing Windows %PATH% Environment", fix_winpython_pathenv, []),
|
("Fixing Windows %PATH% Environment", fix_winpython_pathenv, []),
|
||||||
("Installing Python Package Manager", install_pip, []),
|
("Installing Python Package Manager", install_pip, []),
|
||||||
("Installing PlatformIO and dependencies", install_pypi_packages,
|
("Installing PlatformIO and dependencies", install_pypi_packages, [
|
||||||
(["platformio", "--egg scons"],)),
|
[["platformio"], [
|
||||||
|
"--egg",
|
||||||
|
"http://sourceforge.net/projects/scons/files/latest/download"
|
||||||
|
]]
|
||||||
|
])
|
||||||
]
|
]
|
||||||
|
|
||||||
if not IS_WINDOWS:
|
if not IS_WINDOWS:
|
||||||
|
Reference in New Issue
Block a user