From 9a3aae7f52ba0bdbf7e04e23a01bfd180533c9f2 Mon Sep 17 00:00:00 2001 From: Morton Jonuschat Date: Wed, 10 Aug 2022 21:44:15 -0700 Subject: [PATCH] [BUGFIX] Update / pin python dependencsies in the conda environment When trying out the docker container I noticed two things which broke generating models after rebuilding it. 1) Ended up with cadquery 2.2.0b0 which breaks on trackball thumb clusters Fixed by explicitly pinning to cadquery 2.1 for now 2) nptyping dependency fails with invalid types on python 3.7/3.8 Fixed by pinning to nptyping version 1.4.4 --- docker/environment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/environment.yml b/docker/environment.yml index 864fa555b..bde0f3df5 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -5,9 +5,10 @@ channels: - defaults dependencies: - python>=3.6 - - cadquery=2 + - cadquery=2.1 - pip - numpy - scipy + - nptyping=1.4.4 - pip: - solidpython