Commit 91983800 authored by Jason Madden's avatar Jason Madden

Start testing python 3.6b1

parent 5a7fea6d
...@@ -106,9 +106,9 @@ BUILD_RUNTIMES?=$(PWD)/.runtimes ...@@ -106,9 +106,9 @@ 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
PY33=$(BUILD_RUNTIMES)/snakepit/python3.3
PY34=$(BUILD_RUNTIMES)/snakepit/python3.4 PY34=$(BUILD_RUNTIMES)/snakepit/python3.4
PY35=$(BUILD_RUNTIMES)/snakepit/python3.5 PY35=$(BUILD_RUNTIMES)/snakepit/python3.5
PY36=$(BUILD_RUNTIMES)/snakepit/python3.5
PYPY=$(BUILD_RUNTIMES)/snakepit/pypy54 PYPY=$(BUILD_RUNTIMES)/snakepit/pypy54
TOOLS=$(BUILD_RUNTIMES)/tools TOOLS=$(BUILD_RUNTIMES)/tools
...@@ -127,15 +127,15 @@ $(PY278): ...@@ -127,15 +127,15 @@ $(PY278):
$(PY27): $(PY27):
scripts/install.sh 2.7 scripts/install.sh 2.7
$(PY33):
scripts/install.sh 3.3
$(PY34): $(PY34):
scripts/install.sh 3.4 scripts/install.sh 3.4
$(PY35): $(PY35):
scripts/install.sh 3.5 scripts/install.sh 3.5
$(PY36):
scripts/install.sh 3.6
$(PYPY): $(PYPY):
scripts/install.sh pypy scripts/install.sh pypy
...@@ -163,15 +163,15 @@ test-py278: $(PY278) ...@@ -163,15 +163,15 @@ test-py278: $(PY278)
ls $(BUILD_RUNTIMES)/versions/python2.7.8/bin/ ls $(BUILD_RUNTIMES)/versions/python2.7.8/bin/
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-py33: $(PY33)
PYTHON=python3.3 PATH=$(BUILD_RUNTIMES)/versions/python3.3/bin:$(PATH) make develop fulltoxtest
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/bin:$(PATH) make develop fulltoxtest
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/bin:$(PATH) make develop fulltoxtest
test-py36: $(PY36)
PYTHON=python3.6 PATH=$(BUILD_RUNTIMES)/versions/python3.6/bin:$(PATH) make develop fulltoxtest
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/pypy54/bin:$(PATH) make develop toxtest
......
...@@ -39,7 +39,6 @@ Libraries ...@@ -39,7 +39,6 @@ Libraries
recommended by `the standard <http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sh.html>`_. recommended by `the standard <http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sh.html>`_.
Fixed in :pr:`809` by Fredrix Fornwall. Fixed in :pr:`809` by Fredrix Fornwall.
Security Security
-------- --------
- :mod:`gevent.pywsgi` now checks that the values passed to - :mod:`gevent.pywsgi` now checks that the values passed to
...@@ -55,6 +54,11 @@ Security ...@@ -55,6 +54,11 @@ Security
choose and their frameworks support it. Originally reported choose and their frameworks support it. Originally reported
in :pr:`779` by sean-peters-au and changed in :pr:`781`. in :pr:`779` by sean-peters-au and changed in :pr:`781`.
Platforms
---------
- As mentioned above, Python 2.6 is no longer supported.
- Python 3.6 is now tested on POSIX platforms.
Stdlib Compatibility Stdlib Compatibility
-------------------- --------------------
......
...@@ -99,6 +99,9 @@ for var in "$@"; do ...@@ -99,6 +99,9 @@ for var in "$@"; do
3.5) 3.5)
install 3.5.1 python3.5 install 3.5.1 python3.5
;; ;;
3.6)
install 3.6.0b1 python3.6
;;
pypy) pypy)
install pypy2-5.4 pypy54 install pypy2-5.4 pypy54
;; ;;
......
[tox] [tox]
envlist = envlist =
py27,py33,py34,py35,py27-cffi,pypy,lint py27,py33,py34,py35,py36,py27-cffi,pypy,lint
[testenv] [testenv]
deps = deps =
......
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