Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
91983800
Commit
91983800
authored
Oct 09, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start testing python 3.6b1
parent
5a7fea6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
9 deletions
+16
-9
Makefile
Makefile
+7
-7
changelog.rst
changelog.rst
+5
-1
scripts/install.sh
scripts/install.sh
+3
-0
tox.ini
tox.ini
+1
-1
No files found.
Makefile
View file @
91983800
...
@@ -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
...
...
changelog.rst
View file @
91983800
...
@@ -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
--------------------
--------------------
...
...
scripts/install.sh
View file @
91983800
...
@@ -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.ini
View file @
91983800
[tox]
[tox]
envlist
=
envlist
=
py27,py33,py34,py35,py27-cffi,pypy,lint
py27,py33,py34,py35,py
36,py
27-cffi,pypy,lint
[testenv]
[testenv]
deps
=
deps
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment