From 67cfa98b0016abee66fe1d90c7db3ea1ea1d001f Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 31 Jan 2019 17:43:23 -0800 Subject: [PATCH] Fixing test dependencies to actual versions --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ff98e27..65d7bf9 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,9 @@ setup( include_package_data=True, install_requires=["twisted>=18.7", "autobahn>=0.18"], setup_requires=["pytest-runner"], - extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio~=0.8"]}, + extras_require={ + "tests": ["hypothesis~=3.88", "pytest~=3.10", "pytest-asyncio~=0.8"] + }, entry_points={ "console_scripts": ["daphne = daphne.cli:CommandLineInterface.entrypoint"] },