From 286fd99b9ab2b11df1d9d6208065de95815d0392 Mon Sep 17 00:00:00 2001 From: "U. Bruhin" Date: Mon, 24 Jun 2024 13:33:34 +0200 Subject: [PATCH] Add dependency "numpy < 2" Installing cadquery now installs the dependency numpy 2.x, which is not compatible anymore. So let's add it as a direct dependency to ensure a v1.x version gets installed. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1da4339..177c7a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ authors = [ requires-python = ">=3.8" dependencies = [ "cadquery == 2.3.1", + "numpy < 2", # Dependency of cadquery, but not working with v2.x ] version = "0.1.0"