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
706833bf
Commit
706833bf
authored
May 20, 2020
by
Jason Madden
Committed by
GitHub
May 20, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1618 from gevent/issue1599redux
Update to Cython 3.0a5. Fixes #1599
parents
4152f909
c2617fc8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
docs/changes/1599.bugfix
docs/changes/1599.bugfix
+5
-3
pyproject.toml
pyproject.toml
+3
-2
No files found.
docs/changes/1599.bugfix
View file @
706833bf
gevent can now be built using Cython 3.0a2 and newer.
gevent can now be built using Cython 3.0a5 and newer. The PyPI
distribution uses this version.
The libev extension was incompatible with this. As part of this,
certain internal, undocumented names have been changed.
However, up through at least 3.0a4 compiling with Cython 3 results in
(Technically, gevent can be built with Cython 3.0a2 and above.
However, up through 3.0a4 compiling with Cython 3 results in
gevent's test for memory leaks failing. See `this Cython issue
<https://github.com/cython/cython/issues/3578>`_.
<https://github.com/cython/cython/issues/3578>`_.
)
pyproject.toml
View file @
706833bf
...
...
@@ -16,8 +16,9 @@ requires = [
# required for Python 3.8. 3.0a2 introduced a change that prevented
# us from compiling (https://github.com/gevent/gevent/issues/1599)
# but once that was fixed, 3.0a4 led to all of our leak tests
# failing in Python 2 (https://travis-ci.org/github/gevent/gevent/jobs/683782800)
"Cython >= 0.29.14, < 3"
,
# failing in Python 2 (https://travis-ci.org/github/gevent/gevent/jobs/683782800);
# This was fixed in 3.0a5 (https://github.com/cython/cython/issues/3578)
"Cython >= 3.0a5"
,
# See version requirements in setup.py
"cffi >= 1.12.3 ; platform_python_implementation == 'CPython'"
,
# Python 3.7 requires at least 0.4.14, which is ABI incompatible with earlier
...
...
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