From a9f89741f6e46a0ff13fe340b8c065fd8d35c79f Mon Sep 17 00:00:00 2001 From: Sylvain Brunato Date: Tue, 14 May 2024 14:58:22 +0200 Subject: [PATCH] fix: pin pytest --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bfbff9b..f03c179 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,15 @@ "eodag[notebook] @ git+https://github.com/CS-SI/eodag.git@develop", "orjson", ], - extras_require={"dev": ["black", "pre-commit", "pytest", "shapely"]}, + extras_require={ + "dev": [ + "black", + "pre-commit", + # pytest pinned until https://github.com/pytest-dev/pytest/issues/12263 is fixes + "pytest < 8.2.0", + "shapely", + ] + }, zip_safe=False, include_package_data=True, python_requires=">=3.8",