From 57694927df88c138428854efeaf2e22c9474336f Mon Sep 17 00:00:00 2001 From: Erik Kemperman Date: Sun, 2 Jun 2019 09:47:20 +0200 Subject: [PATCH] Disallow pytest 4.6.0 for now --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 569479cf2..e5279a96f 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ 'Topic :: Software Development :: Libraries :: Python Modules' ], setup_requires=['pytest-runner'], - tests_require=['pytest>=4.4.1', 'pytest-asyncio>=0.10.0', 'coverage>=4.5.3'], + tests_require=['pytest>=4.4.1,<4.6.0', 'pytest-asyncio>=0.10.0', 'coverage>=4.5.3'], package_data={'rx': ['py.typed']}, packages=['rx', 'rx.internal', 'rx.core', 'rx.core.abc',