Skip to content

Commit 55a44af

Browse files
authored
chore: bump pytest and pytest-asyncio dependencies (#74)
1 parent f47d658 commit 55a44af

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,20 @@
1111

1212
tests_require = [
1313
'coveralls==1.11.1',
14-
'pytest==4.6.9',
1514
'pytest-cov==2.8.1',
1615
'mock==3.0.5',
1716
'vcrpy==3.0.0',
1817
]
1918

2019
if sys.version_info > (3, 6):
21-
tests_require.append('pytest-asyncio>=0.9.0')
20+
tests_require.append([
21+
'pytest==5.4.1',
22+
'pytest-asyncio==0.11.0',
23+
])
24+
else:
25+
tests_require.append([
26+
'pytest==4.6.9',
27+
])
2228

2329
dev_requires = [
2430
'flake8==3.7.9',

0 commit comments

Comments
 (0)