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
069c3b0c
Commit
069c3b0c
authored
May 03, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test on Python 3.7.0b4 [skip appveyor]
parent
15665a17
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
6 deletions
+9
-6
CHANGES.rst
CHANGES.rst
+3
-0
Makefile
Makefile
+2
-2
scripts/install.sh
scripts/install.sh
+2
-2
src/greentest/3.7/test_socket.py
src/greentest/3.7/test_socket.py
+1
-1
src/greentest/3.7/version
src/greentest/3.7/version
+1
-1
No files found.
CHANGES.rst
View file @
069c3b0c
...
@@ -36,6 +36,9 @@
...
@@ -36,6 +36,9 @@
the end of the loop iteration using UV_RUN_ONCE. This eliminates the
the end of the loop iteration using UV_RUN_ONCE. This eliminates the
need to patch libuv to be greenlet-safe.
need to patch libuv to be greenlet-safe.
- Python 3.7.0b4 is now the tested and supported version of Python
3.7. PyPy 6.0 has been tested, although CI continues to use 5.10.
1.3b1 (2018-04-13)
1.3b1 (2018-04-13)
==================
==================
...
...
Makefile
View file @
069c3b0c
...
@@ -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
3
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.0b
4
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5100
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5100
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5101
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.5_5101
...
@@ -197,7 +197,7 @@ test-py36: $(PY36)
...
@@ -197,7 +197,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
3/openssl/lib
PYTHON
=
python3.7.0b3
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b3
/bin:
$(PATH)
make develop allbackendtest
LD_LIBRARY_PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b
4/openssl/lib
PYTHON
=
python3.7.0b4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.0b4
/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 @
069c3b0c
...
@@ -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. We also beat them to the punch for 3.7b2
# compiles openssl for us. We also beat them to the punch for 3.7b2
, b3, b4
# 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
...
@@ -108,7 +108,7 @@ for var in "$@"; do
...
@@ -108,7 +108,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
3 python3.7.0b3
install
3.7.0b
4 python3.7.0b4
;;
;;
pypy
)
pypy
)
install
pypy2.7-5.10.0 pypy5100
install
pypy2.7-5.10.0 pypy5100
...
...
src/greentest/3.7/test_socket.py
View file @
069c3b0c
...
@@ -5948,7 +5948,7 @@ class LinuxKernelCryptoAPI(unittest.TestCase):
...
@@ -5948,7 +5948,7 @@ class LinuxKernelCryptoAPI(unittest.TestCase):
@
unittest
.
skipUnless
(
sys
.
platform
.
startswith
(
"win"
),
"requires Windows"
)
@
unittest
.
skipUnless
(
sys
.
platform
.
startswith
(
"win"
),
"requires Windows"
)
class
TestMSWindowsTCPFlags
(
unittest
.
TestCase
):
class
TestMSWindowsTCPFlags
(
unittest
.
TestCase
):
knownTCPFlags
=
{
knownTCPFlags
=
{
# ava
li
able since long time ago
# ava
il
able since long time ago
'TCP_MAXSEG'
,
'TCP_MAXSEG'
,
'TCP_NODELAY'
,
'TCP_NODELAY'
,
# available starting with Windows 10 1607
# available starting with Windows 10 1607
...
...
src/greentest/3.7/version
View file @
069c3b0c
3.7.0b
3
3.7.0b
4
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