From 15a754d903b3febe7015a0b92884cfebd0b74a6f Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 9 Nov 2021 15:55:18 +0100 Subject: [PATCH] Unpinned test dependencies. (#391) --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index af3b3b9..56214f4 100755 --- a/setup.py +++ b/setup.py @@ -25,9 +25,7 @@ setup( install_requires=["twisted[tls]>=18.7", "autobahn>=0.18", "asgiref>=3.2.10,<4"], python_requires=">=3.6", setup_requires=["pytest-runner"], - extras_require={ - "tests": ["hypothesis==4.23", "pytest~=3.10", "pytest-asyncio~=0.8"] - }, + extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio"]}, entry_points={ "console_scripts": ["daphne = daphne.cli:CommandLineInterface.entrypoint"] },