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
82726ea1
Commit
82726ea1
authored
Mar 27, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to PyPy 7.1.
Fixes #1373
parent
68c765ab
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
18 deletions
+12
-18
CHANGES.rst
CHANGES.rst
+2
-2
Makefile
Makefile
+4
-4
appveyor.yml
appveyor.yml
+4
-4
scripts/install.sh
scripts/install.sh
+2
-2
src/gevent/tests/known_failures.py
src/gevent/tests/known_failures.py
+0
-6
No files found.
CHANGES.rst
View file @
82726ea1
...
...
@@ -8,8 +8,8 @@
==================
- Python version updates: gevent is now tested with CPython 2.7.15,
3.5.6, 3.6.8, and 3.7.2. It is also tested with PyPy2 7.
0
and PyPy
3.6 7.
0
.
3.5.6, 3.6.8, and 3.7.2. It is also tested with PyPy2 7.
1
and PyPy
3.6 7.
1 (PyPy 7.0 was not capable of running SSL tests on Travis CI)
.
- Support for Python 3.4 has been removed, as that version is no
longer supported uptstream.
...
...
Makefile
View file @
82726ea1
...
...
@@ -126,8 +126,8 @@ PY27=$(BUILD_RUNTIMES)/snakepit/python2.7.16
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5.6
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6.8
PY37
=
$(BUILD_RUNTIMES)
/snakepit/python3.7.2
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy7
0
0
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.6_7
0
0
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy7
1
0
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.6_7
1
0
TOOLS
=
$(BUILD_RUNTIMES)
/tools
...
...
@@ -188,10 +188,10 @@ test-py37: $(PY37)
PYTHON
=
python3.7.2
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.7.2/bin:
$(PATH)
make develop leaktest cffibackendtest coverage_combine
test-pypy
:
$(PYPY)
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy7
0
0/bin:
$(PATH)
make develop cffibackendtest
PYTHON
=
$(PYPY)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy7
1
0/bin:
$(PATH)
make develop cffibackendtest
test-pypy3
:
$(PYPY3)
PYTHON
=
$(PYPY3)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.6_7
0
0/bin:
$(PATH)
make develop basictest
PYTHON
=
$(PYPY3)
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.6_7
1
0/bin:
$(PATH)
make develop basictest
test-py27-noembed
:
$(PY27)
@
python2.7.16 scripts/travis.py fold_start conf_libev
"Configuring libev"
...
...
appveyor.yml
View file @
82726ea1
...
...
@@ -36,7 +36,7 @@ environment:
PYTHON_EXE
:
python
# 32-bit
-
PYTHON
:
"
C:
\\
pypy2.7-v7.
0
.0-win32"
-
PYTHON
:
"
C:
\\
pypy2.7-v7.
1
.0-win32"
PYTHON_ID
:
"
pypy"
PYTHON_EXE
:
pypy
PYTHON_VERSION
:
"
2.7.x"
...
...
@@ -105,10 +105,10 @@ install:
New-Item -ItemType directory -Path "$env:PYTMP" | Out-Null;
}
if ("${env:PYTHON_ID}" -eq "pypy") {
if (!(Test-Path "${env:PYTMP}\pypy2-v7.
0
.0-win32.zip")) {
(New-Object Net.WebClient).DownloadFile('https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.
0.0-win32.zip', "${env:PYTMP}\pypy2-v7.0
.0-win32.zip");
if (!(Test-Path "${env:PYTMP}\pypy2-v7.
1
.0-win32.zip")) {
(New-Object Net.WebClient).DownloadFile('https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.
1.0-win32.zip', "${env:PYTMP}\pypy2-v7.1
.0-win32.zip");
}
7z x -y "${env:PYTMP}\pypy2-v7.
0
.0-win32.zip" -oC:\ | Out-Null;
7z x -y "${env:PYTMP}\pypy2-v7.
1
.0-win32.zip" -oC:\ | Out-Null;
& "${env:PYTHON}\pypy.exe" "-mensurepip";
}
...
...
scripts/install.sh
View file @
82726ea1
...
...
@@ -98,10 +98,10 @@ for var in "$@"; do
install
3.7.2 python3.7.2
;;
pypy
)
install
pypy2.7-7.
0.0 pypy70
0
install
pypy2.7-7.
1.0 pypy71
0
;;
pypy3
)
install
pypy3.6-7.
0.0 pypy3.6_70
0
install
pypy3.6-7.
1.0 pypy3.6_71
0
;;
esac
done
src/gevent/tests/known_failures.py
View file @
82726ea1
...
...
@@ -259,12 +259,6 @@ if PYPY:
# This fails to get the correct results, sometimes. I can't reproduce locally
'FLAKY test__example_udp_server.py'
,
'FLAKY test__example_udp_client.py'
,
# PyPy 7.0 on Travis with Ubunto Xenial 16.04
# can't allocate SSL Context objects, either in Python 2.7
# or 3.6. There must be some library incompatibility.
'test_ssl.py'
,
]
if
LIBUV
:
...
...
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