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
e8596f4d
Commit
e8596f4d
authored
Apr 05, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pin cython to the version we've been using now that 0.24 is out. [skip ci]
parent
9a7cfa8b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
appveyor.yml
appveyor.yml
+1
-1
dev-requirements.txt
dev-requirements.txt
+1
-1
setup.py
setup.py
+1
-1
tox.ini
tox.ini
+1
-1
No files found.
appveyor.yml
View file @
e8596f4d
...
...
@@ -124,7 +124,7 @@ install:
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
# NOTE: psutil won't install under PyPy.
-
"
%CMD_IN_ENV%
pip
install
-U
wheel
cython
greenlet
psutil"
-
"
%CMD_IN_ENV%
pip
install
-U
wheel
cython
==0.23.5
greenlet
psutil"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
bin
\"
))
{ls
${env:PYTHON}
\\
bin;}"
-
ps
:
"
if(Test-Path(
\"
${env:PYTHON}
\\
Scripts
\"
))
{ls
${env:PYTHON}
\\
Scripts;}"
...
...
dev-requirements.txt
View file @
e8596f4d
setuptools
cython
>=0.23.4
cython
==0.23.5
greenlet
>=0.4.9
coverage
>=4.0
cffi
...
...
setup.py
View file @
e8596f4d
...
...
@@ -452,7 +452,7 @@ if run_make and os.path.exists("Makefile"):
# NOTE: This is effectively pointless and serves only for
# documentation/metadata, because we run 'make' *before* we run
# setup(), so installing cython happens too late.
setup_requires
=
[
'cython
>= 0.23.4
'
]
setup_requires
=
[
'cython
== 0.23.5
'
]
else
:
setup_requires
=
[]
...
...
tox.ini
View file @
e8596f4d
...
...
@@ -5,7 +5,7 @@ envlist =
[testenv]
deps
=
greenlet
cython
>=
0.23.4
cython
=
= 0.23.5
coverage
>=
4.0
psutil
cffi
...
...
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