From 7ee824f72357894f2c0ef63b35d3dbc20b85435d Mon Sep 17 00:00:00 2001 From: Jonas Kittner Date: Thu, 24 Oct 2024 17:05:32 +0200 Subject: [PATCH] require older numpy on 3.9 crick version 0.6.0 is the last version to support 3.9. It is compiled against numpy <2.0.0 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5b16c7ed..1f743d41 100644 --- a/setup.py +++ b/setup.py @@ -79,6 +79,7 @@ "tqdm", ], extras_require={ + ':python_version == "3.9"': ["numpy<2.0.0"], "test": [ "pytest", "pytest-cov",