From 7bc8c00dc1a81633daea4810e04762d61a2abd5a Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Sat, 4 Nov 2023 03:36:00 -0400 Subject: [PATCH] Temporary fix for 1431 to keep error from propagating (#1435) * Temporary fix for 1431 to keep error from propagating * Pinned multimethod to specific version --- conda/meta.yaml | 2 +- environment.yml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 986b0ac63..f93949fea 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -24,7 +24,7 @@ requirements: - typing_extensions - nptyping >=2.0.1 - nlopt - - multimethod >=1.7,<2.0 + - multimethod ==1.9.1 - casadi test: diff --git a/environment.yml b/environment.yml index 21763683a..d2f16eb25 100644 --- a/environment.yml +++ b/environment.yml @@ -20,7 +20,7 @@ dependencies: - nlopt - path - casadi - - multimethod >=1.7,<2.0 + - multimethod ==1.9.1 - pip - pip: - --editable=. diff --git a/setup.py b/setup.py index 9163f69ae..e1ee0ed2d 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ reqs = [ "cadquery-ocp>=7.7.0a0,<7.8", "ezdxf", - "multimethod>=1.7,<2.0", + "multimethod==1.9.1", "nlopt", "nptyping==2.0.1", "typish",