Commit feab38df authored by Jason Madden's avatar Jason Madden

Update tested python versions on travis.

Note that the previous 3.6 beta has been removed.

[skip appveyor]
parent cd1defa6
...@@ -106,10 +106,10 @@ BUILD_RUNTIMES?=$(PWD)/.runtimes ...@@ -106,10 +106,10 @@ BUILD_RUNTIMES?=$(PWD)/.runtimes
PY278=$(BUILD_RUNTIMES)/snakepit/python2.7.8 PY278=$(BUILD_RUNTIMES)/snakepit/python2.7.8
PY27=$(BUILD_RUNTIMES)/snakepit/python2.7 PY27=$(BUILD_RUNTIMES)/snakepit/python2.7
PY34=$(BUILD_RUNTIMES)/snakepit/python3.4 PY34=$(BUILD_RUNTIMES)/snakepit/python3.4.5
PY35=$(BUILD_RUNTIMES)/snakepit/python3.5 PY35=$(BUILD_RUNTIMES)/snakepit/python3.5.2
PY36=$(BUILD_RUNTIMES)/snakepit/python3.6 PY36=$(BUILD_RUNTIMES)/snakepit/python3.6b4
PYPY=$(BUILD_RUNTIMES)/snakepit/pypy54 PYPY=$(BUILD_RUNTIMES)/snakepit/pypy56
PYPY3=$(BUILD_RUNTIMES)/snakepit/pypy3.3_5.5 PYPY3=$(BUILD_RUNTIMES)/snakepit/pypy3.3_5.5
TOOLS=$(BUILD_RUNTIMES)/tools TOOLS=$(BUILD_RUNTIMES)/tools
...@@ -146,6 +146,7 @@ $(PYPY3): ...@@ -146,6 +146,7 @@ $(PYPY3):
PIP?=$(BUILD_RUNTIMES)/versions/$(PYTHON)/bin/pip PIP?=$(BUILD_RUNTIMES)/versions/$(PYTHON)/bin/pip
develop: develop:
ls -l $(BUILD_RUNTIMES)/snakepit/
echo pip is at `which $(PIP)` echo pip is at `which $(PIP)`
echo python is at `which $(PYTHON)` echo python is at `which $(PYTHON)`
# First install a newer pip so that it can use the wheel cache # First install a newer pip so that it can use the wheel cache
...@@ -168,16 +169,16 @@ test-py278: $(PY278) ...@@ -168,16 +169,16 @@ test-py278: $(PY278)
PYTHON=python2.7.8 PATH=$(BUILD_RUNTIMES)/versions/python2.7.8/bin:$(PATH) make develop toxtest PYTHON=python2.7.8 PATH=$(BUILD_RUNTIMES)/versions/python2.7.8/bin:$(PATH) make develop toxtest
test-py34: $(PY34) test-py34: $(PY34)
PYTHON=python3.4 PATH=$(BUILD_RUNTIMES)/versions/python3.4/bin:$(PATH) make develop fulltoxtest PYTHON=python3.4 PATH=$(BUILD_RUNTIMES)/versions/python3.4.5/bin:$(PATH) make develop toxtest
test-py35: $(PY35) test-py35: $(PY35)
PYTHON=python3.5 PATH=$(BUILD_RUNTIMES)/versions/python3.5/bin:$(PATH) make develop fulltoxtest PYTHON=python3.5 PATH=$(BUILD_RUNTIMES)/versions/python3.5.2/bin:$(PATH) make develop fulltoxtest
test-py36: $(PY36) test-py36: $(PY36)
PYTHON=python3.6 PATH=$(BUILD_RUNTIMES)/versions/python3.6/bin:$(PATH) make develop fulltoxtest PYTHON=python3.6 PATH=$(BUILD_RUNTIMES)/versions/python3.6b4/bin:$(PATH) make develop toxtest
test-pypy: $(PYPY) test-pypy: $(PYPY)
PYTHON=$(PYPY) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy54/bin:$(PATH) make develop toxtest PYTHON=$(PYPY) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy56/bin:$(PATH) make develop toxtest
test-pypy3: $(PYPY3) test-pypy3: $(PYPY3)
PYTHON=$(PYPY3) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy3.3_5.5/bin:$(PATH) make develop toxtest PYTHON=$(PYPY3) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy3.3_5.5/bin:$(PATH) make develop toxtest
......
...@@ -94,16 +94,16 @@ for var in "$@"; do ...@@ -94,16 +94,16 @@ for var in "$@"; do
install 3.3.6 python3.3 install 3.3.6 python3.3
;; ;;
3.4) 3.4)
install 3.4.4 python3.4 install 3.4.5 python3.4
;; ;;
3.5) 3.5)
install 3.5.1 python3.5 install 3.5.2 python3.5
;; ;;
3.6) 3.6)
install 3.6.0b2 python3.6 install 3.6.0b4 python3.6b4
;; ;;
pypy) pypy)
install pypy2-5.4 pypy54 install pypy2-5.6.0 pypy56
;; ;;
pypy3) pypy3)
install pypy3.3-5.5-alpha pypy3.3_5.5 install pypy3.3-5.5-alpha pypy3.3_5.5
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment