From 2997d03146d01b99358f0097646990d66388e3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20David=20M=C3=BCller?= Date: Mon, 17 Jun 2024 13:42:20 +0200 Subject: [PATCH] dont allow numpy 2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9f348b932..311856a4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ # this should be manually updated as the minimum python version increases dependencies = [ "requests >= 2.12", - "numpy >= 1.14.5, <= 2.0", + "numpy >= 1.14.5, < 2.0", "msgpack >= 0.5.6", "networkx >= 2.0", ]