Explorar el Código

downgrade requirement to typeguard<4.3 for tests to avoid broken test jobs

Peter Bieringer hace 1 año
padre
commit
c6d01b7874
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -40,7 +40,7 @@ install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
                     "pika>=1.1.0",
                     "setuptools; python_version<'3.9'"]
 bcrypt_requires = ["bcrypt"]
-test_requires = ["pytest>=7", "typeguard>=4", "waitress", *bcrypt_requires]
+test_requires = ["pytest>=7", "typeguard<4.3", "waitress", *bcrypt_requires]
 
 setup(
     name="Radicale",