From 9aae5655cfde45c7b4725ba98cc0491ed385e113 Mon Sep 17 00:00:00 2001 From: Unrud Date: Sat, 2 Jul 2022 21:29:17 +0200 Subject: [PATCH] typeguard requires pytest<7 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3aa336f..2139d17 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,8 @@ WEB_FILES = ["web/internal_data/css/icon.png", install_requires = ["defusedxml", "passlib", "vobject>=0.9.6", "python-dateutil>=2.7.3", "setuptools; python_version<'3.9'"] -tests_require = ["pytest", "pytest-cov", "pytest-flake8", "pytest-isort", +# typeguard requires pytest<7 +tests_require = ["pytest<7", "pytest-cov", "pytest-flake8", "pytest-isort", "typeguard", "waitress", "pytest-mypy; implementation_name=='cpython'", "types-setuptools; implementation_name=='cpython'"]