From e4cf22cf47b59457f666b38f00a5967e36f0ef3e Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Sun, 18 Jun 2023 02:43:51 +0200 Subject: [PATCH] [Temp] Hack-in the myst-parser requirement for debugging Needed to trace what conflicts with it --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dafab884..52f7f32f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,6 +49,12 @@ jobs: run: | pip install --upgrade pip pip install --upgrade "Sphinx${{ matrix.sphinx }}" -e .[testing] + if: contains(matrix.sphinx, '7.0') != true + - name: Install myst-nb with Sphinx ${{ matrix.sphinx }} + run: | + pip install --upgrade pip + pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser~=2.0" -e .[testing] + if: contains(matrix.sphinx, '7.0') - name: Run pytest run: pytest --durations=10