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
3d5a60c1
Commit
3d5a60c1
authored
Oct 10, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modern dependencies: remove beta qualifier, get greenlet that is known to build on windows.
parent
08b62d94
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
.travis.yml
.travis.yml
+1
-1
appveyor.yml
appveyor.yml
+1
-1
setup.py
setup.py
+1
-1
tox.ini
tox.ini
+2
-2
No files found.
.travis.yml
View file @
3d5a60c1
...
...
@@ -19,7 +19,7 @@ install:
# disables the cache.
# We need wheel>=0.26 on Python 3.5. See previous revisions.
-
travis_retry pip install -U wheel
-
travis_retry pip install -U tox cython greenlet pep8 pyflakes "coverage>=4.0
b3" "coveralls>=1.0b1
"
-
travis_retry pip install -U tox cython greenlet pep8 pyflakes "coverage>=4.0
" "coveralls>=1.0
"
script
:
-
if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $LINT ==
true
]]; then python setup.py develop && make travis_test_linters; elif [[ $LINT ==
false
&& $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then python setup.py develop && make fulltoxtest; elif [[ $LINT ==
false
]]; then python setup.py develop && make fulltoxtest; fi
notifications
:
...
...
appveyor.yml
View file @
3d5a60c1
...
...
@@ -65,7 +65,7 @@ install:
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
-
"
%CMD_IN_ENV%
pip
install
cython
greenlet"
-
"
%CMD_IN_ENV%
pip
install
-U
cython
greenlet"
-
"
python
util/cythonpp.py
-o
gevent.corecext.c
gevent/core.ppyx"
-
"
type
gevent
\\
callbacks.c
>>
gevent.corecext.c"
...
...
setup.py
View file @
3d5a60c1
...
...
@@ -316,7 +316,7 @@ def read(name, *args):
if
PYPY
:
install_requires
=
[]
else
:
install_requires
=
[
'greenlet >= 0.4.
7
'
]
install_requires
=
[
'greenlet >= 0.4.
9
'
]
# If we are running info / help commands, or we're being imported by
# tools like pyroma, we don't need to build anything
...
...
tox.ini
View file @
3d5a60c1
...
...
@@ -5,8 +5,8 @@ envlist =
[testenv]
deps
=
greenlet
cython
coverage
>=
4.0
b3
cython
>=
0.23.4
coverage
>=
4.0
whitelist_externals
=
*
commands
=
...
...
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