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
790cab22
Commit
790cab22
authored
Aug 05, 2021
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump min Cython for 3.10; try to install 3.10 on appveyor.
parent
cdd2b7f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
.github/workflows/ci.yml
.github/workflows/ci.yml
+1
-1
appveyor.yml
appveyor.yml
+6
-0
pyproject.toml
pyproject.toml
+3
-2
No files found.
.github/workflows/ci.yml
View file @
790cab22
...
...
@@ -257,7 +257,7 @@ jobs:
pip install -U -q setuptools wheel twine
pip install -q -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"'
pip install -q -U 'cffi;platform_python_implementation=="CPython"'
pip install -q -U 'cython>=3.0a
5
'
pip install -q -U 'cython>=3.0a
9
'
pip install 'greenlet>=1.0a1;platform_python_implementation=="CPython"'
-
name
:
Build gevent
...
...
appveyor.yml
View file @
790cab22
...
...
@@ -41,6 +41,12 @@ environment:
# a later point release.
# 64-bit
-
PYTHON
:
"
C:
\\
Python310-x64"
PYTHON_VERSION
:
"
3.10.0rc1"
PYTHON_ARCH
:
"
64"
PYTHON_EXE
:
python
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2019
-
PYTHON
:
"
C:
\\
Python39-x64"
PYTHON_VERSION
:
"
3.9.x"
...
...
pyproject.toml
View file @
790cab22
...
...
@@ -20,8 +20,9 @@ requires = [
# 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);
# This was fixed in 3.0a5 (https://github.com/cython/cython/issues/3578)
# 3.0a6 fixes an issue cythonizing source on 32-bit platforms
"Cython >= 3.0a8"
,
# 3.0a6 fixes an issue cythonizing source on 32-bit platforms.
# 3.0a9 is needed for Python 3.10.
"Cython >= 3.0a9"
,
# 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