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
5200367c
Commit
5200367c
authored
Feb 28, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install 3.7b2. Ref #1125.
parent
e97ed2aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
.travis.yml
.travis.yml
+7
-7
CHANGES.rst
CHANGES.rst
+1
-1
Makefile
Makefile
+2
-2
scripts/install.sh
scripts/install.sh
+2
-2
No files found.
.travis.yml
View file @
5200367c
...
@@ -17,14 +17,14 @@ env:
...
@@ -17,14 +17,14 @@ env:
matrix
:
matrix
:
# These are ordered to get as much diversity in the
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as posible
# first group of parallel runs (4) as posible
-
TASK=test-py27
#
- TASK=test-py27
-
TASK=test-pypy
#
- TASK=test-pypy
-
TASK=test-py36
#
- TASK=test-py36
-
TASK=test-py37
-
TASK=test-py37
-
TASK=test-py27-noembed
#
- TASK=test-py27-noembed
-
TASK=test-pypy3
#
- TASK=test-pypy3
-
TASK=test-py35
#
- TASK=test-py35
-
TASK=test-py34
#
- TASK=test-py34
matrix
:
matrix
:
fast_finish
:
true
fast_finish
:
true
...
...
CHANGES.rst
View file @
5200367c
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
- The internal, undocumented class ``gevent._socket3._fileobject`` has
- The internal, undocumented class ``gevent._socket3._fileobject`` has
been removed. See :issue:`1084`.
been removed. See :issue:`1084`.
- Travis CI tests on Python 3.7.0b
1
and PyPy 2.7 5.10.0 and PyPy 3.5
- Travis CI tests on Python 3.7.0b
2
and PyPy 2.7 5.10.0 and PyPy 3.5
5.10.1.
5.10.1.
- Support the ``capture_output`` argument added to Python 3.7 in
- Support the ``capture_output`` argument added to Python 3.7 in
...
...
Makefile
View file @
5200367c
...
@@ -131,7 +131,7 @@ PY27=$(BUILD_RUNTIMES)/snakepit/python2.7.14
...
@@ -131,7 +131,7 @@ PY27=$(BUILD_RUNTIMES)/snakepit/python2.7.14
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4.7
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4.7
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5.4
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5.4
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6.4
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6.4
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.0b
1
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.0b
2
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5100
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5100
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5101
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5101
...
@@ -196,7 +196,7 @@ test-py36: $(PY36)
...
@@ -196,7 +196,7 @@ test-py36: $(PY36)
PYTHON
=
python3.6.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.4/bin:
$(PATH)
make develop allbackendtest
PYTHON
=
python3.6.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.4/bin:
$(PATH)
make develop allbackendtest
test-py37
:
$(PY37)
test-py37
:
$(PY37)
LD_LIBRARY_PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b
1/openssl/lib
PYTHON
=
python3.7.0b1
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b1
/bin:
$(PATH)
make develop allbackendtest
LD_LIBRARY_PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b
2/openssl/lib
PYTHON
=
python3.7.0b2
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b2
/bin:
$(PATH)
make develop allbackendtest
test-pypy
:
$(PYPY)
test-pypy
:
$(PYPY)
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5100/bin:
$(PATH)
make develop cffibackendtest
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5100/bin:
$(PATH)
make develop cffibackendtest
...
...
scripts/install.sh
View file @
5200367c
...
@@ -49,7 +49,7 @@ PYENV=$BASE/pyenv
...
@@ -49,7 +49,7 @@ PYENV=$BASE/pyenv
# The file for 3.7b1 shipped with pyenv on Feb 6 2018
# The file for 3.7b1 shipped with pyenv on Feb 6 2018
# won't compile on Travis. So we use a forked version that
# won't compile on Travis. So we use a forked version that
# compiles openssl for us.
# compiles openssl for us.
We also beat them to the punch for 3.7b2
# https://github.com/travis-ci/travis-ci/issues/9069
# https://github.com/travis-ci/travis-ci/issues/9069
if
[
!
-d
"
$PYENV
/.git"
]
;
then
if
[
!
-d
"
$PYENV
/.git"
]
;
then
...
@@ -104,7 +104,7 @@ for var in "$@"; do
...
@@ -104,7 +104,7 @@ for var in "$@"; do
install
3.6.4 python3.6.4
install
3.6.4 python3.6.4
;;
;;
3.7
)
3.7
)
install
3.7.0b
1 python3.7.0b1
install
3.7.0b
2 python3.7.0b2
;;
;;
pypy
)
pypy
)
install
pypy2.7-5.10.0 pypy5100
install
pypy2.7-5.10.0 pypy5100
...
...
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