From d8dba90f77f06a8eca04a111509b0c1ce2543a4b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 21 Jun 2015 21:48:45 +0300 Subject: [PATCH] Fix broken link to SCons installer --- HISTORY.rst | 6 ++++++ platformio/__init__.py | 2 +- scripts/get-platformio.py | 3 ++- tox.ini | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f6be44fa..9d120c1e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Release History =============== +2.1.2 (2015-06-21) +------------------ + +* Fixed broken link to SCons installer + + 2.1.1 (2015-06-09) ------------------ diff --git a/platformio/__init__.py b/platformio/__init__.py index d0de4173..138a06ba 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (2, 1, 1) +VERSION = (2, 1, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/scripts/get-platformio.py b/scripts/get-platformio.py index fd792b25..26b0c932 100644 --- a/scripts/get-platformio.py +++ b/scripts/get-platformio.py @@ -101,7 +101,8 @@ def main(): ("Installing PlatformIO and dependencies", install_pypi_packages, [ [["setuptools"], ["platformio"], [ "--egg", - "http://sourceforge.net/projects/scons/files/latest/download" + "http://sourceforge.net/projects/platformio-storage/files/" + "scons.zip/download" ]] ]) ] diff --git a/tox.ini b/tox.ini index 49706329..d96bb3d8 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ deps = isort flake8 commands = - pip install --egg http://sourceforge.net/projects/scons/files/latest/download + pip install --egg http://sourceforge.net/projects/platformio-storage/files/scons.zip/download [testenv:docs] basepython = python2.7 @@ -48,5 +48,5 @@ passenv = * deps = pytest commands = {envpython} --version - pip install --egg http://sourceforge.net/projects/scons/files/latest/download + pip install --egg http://sourceforge.net/projects/platformio-storage/files/scons.zip/download py.test -v --basetemp="{envtmpdir}" tests