From b38889b00a17f045d398f48fec6580ab59534f2d Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Wed, 5 Oct 2022 12:43:48 -0800 Subject: [PATCH] Cap doit to <0.36.0 to avoid TaskLoader2 As reported in https://github.com/dib-lab/dammit/issues/239, we are still using the old API that was removed in 0.36.0 --- recipe/meta.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f75a32b1..79d9fd21 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,9 @@ requirements: - sphinx_rtd_theme >=0.1.9 - pytest - pytest-runner - - doit >=0.29.0 + # After we upgrade to doit.TaskLoader2, we can remove upper pin + # https://github.com/dib-lab/dammit/issues/239 + - doit >=0.29.0,<0.36.0 - matplotlib - shmlast