From 9fd5163c3fecab5bca62364351c1505aa896c758 Mon Sep 17 00:00:00 2001 From: martin-springer Date: Wed, 25 Sep 2024 16:27:11 -0400 Subject: [PATCH] limit nbval to nbval<=0.9.6 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0e8f3ab6..1862dc92 100755 --- a/setup.py +++ b/setup.py @@ -36,7 +36,9 @@ "pytest-cov", "coverage", "flake8", - "nbval>=0.11.0", + # nbval greater than 0.9.6 has a bug with semicolon + # https://github.com/computationalmodelling/nbval/issues/194 + "nbval<=0.9.6", "pytest-mock", ]