Skip to content

Commit 3aba1c5

Browse files
committed
Mark the router fixture as async
1 parent b831115 commit 3aba1c5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@
4949
include_package_data=True,
5050
install_requires=[
5151
"asyncio-cancel-token==0.1.0a2",
52-
"pytest>=3.3.2,<4",
52+
# pytest 3.7.0 broke async fixtures.
53+
# https://github.com/pytest-dev/pytest-asyncio/issues/89
54+
"pytest>=3.3.2,<3.7.0",
55+
"pytest-asyncio>=0.8.0,<1",
5356
],
5457
setup_requires=['setuptools-markdown'],
5558
python_requires='>=3.6, <4',

0 commit comments

Comments
 (0)