From f353a34af8eea43235789dc52106a5ff2dc4ecc0 Mon Sep 17 00:00:00 2001 From: Vincenzo Eduardo Padulano Date: Thu, 20 Jul 2023 11:07:15 +0200 Subject: [PATCH] [ci] Fix specification of nbconvert Use the `!=` syntax to exclude the unwanted version of `nbconvert` in requirements.txt since there is no way to specify a logical OR operator in pip requirements. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 98a13836d1..a8b0c15190 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ jupyter pytest # nbconvert 7.3 has a bug that does not respect --output option # See https://github.com/jupyter/nbconvert/issues/1970 -nbconvert < 7.3 , >= 7.4 +nbconvert != 7.3.* # Needed by tutorials (run as part of roottest) pandas