mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
typeguard requires pytest<7
This commit is contained in:
parent
413c74c27c
commit
9aae5655cf
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -49,7 +49,8 @@ WEB_FILES = ["web/internal_data/css/icon.png",
|
||||||
install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
|
install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
|
||||||
"python-dateutil>=2.7.3",
|
"python-dateutil>=2.7.3",
|
||||||
"setuptools; python_version<'3.9'"]
|
"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",
|
"typeguard", "waitress",
|
||||||
"pytest-mypy; implementation_name=='cpython'",
|
"pytest-mypy; implementation_name=='cpython'",
|
||||||
"types-setuptools; implementation_name=='cpython'"]
|
"types-setuptools; implementation_name=='cpython'"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue