Skip to content

Commit 006493b

Browse files
committedNov 17, 2015
Require and test against gevent 1.1rc1.
1 parent 800d012 commit 006493b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
keywords='api graphql protocol rest',
2929
packages=find_packages(exclude=['tests', 'tests_py35']),
3030
install_requires=['six>=1.10.0'],
31-
tests_require=['pytest>=2.7.3', 'gevent==1.1b5', 'six>=1.10.0'],
31+
tests_require=['pytest>=2.7.3', 'gevent==1.1rc1', 'six>=1.10.0'],
3232
extras_require={
3333
'gevent': [
34-
'gevent==1.1b5'
34+
'gevent==1.1rc1'
3535
]
3636
}
3737
)

‎tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist = flake8,import-order,py27,py33,py34,py35,pypy,docs
44
[testenv]
55
deps =
66
pytest>=2.7.2
7-
gevent==1.1b5
7+
gevent==1.1rc1
88
six>=1.10.0
99
commands =
1010
py{27,33,34,py}: py.test tests {posargs}
@@ -19,7 +19,7 @@ commands = flake8
1919
basepython=python3.5
2020
deps =
2121
import-order
22-
gevent==1.1b5
22+
gevent==1.1rc1
2323
commands = import-order graphql
2424

2525
[testenv:docs]

0 commit comments

Comments
 (0)
Please sign in to comment.