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
accd9cf6
Commit
accd9cf6
authored
Feb 23, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new cython on Windows too.
parent
647918f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
appveyor.yml
appveyor.yml
+2
-1
setup.py
setup.py
+4
-0
No files found.
appveyor.yml
View file @
accd9cf6
...
...
@@ -131,7 +131,8 @@ install:
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
# Note that psutil won't build under PyPy on Windows.
-
"
%CMD_IN_ENV%
pip
install
-U
setuptools
wheel
cython
greenlet
cffi
dnspython
idna"
-
"
%CMD_IN_ENV%
pip
install
-e
git+https://github.com/cython/cython.git@63cd3bbb5eac22b92808eeb90b512359e3def20a#egg=cython"
-
"
%CMD_IN_ENV%
pip
install
-U
setuptools
wheel
greenlet
cffi
dnspython
idna"
-
ps
:
if ("${env:PYTHON_ID}" -ne "pypy") {
...
...
setup.py
View file @
accd9cf6
...
...
@@ -143,9 +143,13 @@ if PYPY:
# As of PyPy 5.10, this builds, but won't import (missing _Py_ReprEnter)
EXT_MODULES
.
remove
(
CORE
)
# This uses PyWeakReference and doesn't compile on PyPy
EXT_MODULES
.
remove
(
IDENT
)
_to_cythonize
.
remove
(
LOCAL
)
_to_cythonize
.
remove
(
GREENLET
)
_to_cythonize
.
remove
(
SEMAPHORE
)
_to_cythonize
.
remove
(
IDENT
)
for
mod
in
_to_cythonize
:
EXT_MODULES
.
remove
(
mod
)
...
...
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