From 48c5cdda51080ba5641696271243d7deab42bc19 Mon Sep 17 00:00:00 2001 From: M Bussonnier Date: Fri, 24 May 2024 02:21:58 -0700 Subject: [PATCH] Update .github/workflows/CI.yml --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 79b1f51cc..5db40e833 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -77,7 +77,7 @@ jobs: # check if there is a specific Sphinx version to test with # example substitution: tox run -e compile,py39-sphinx61-tests if [ -n "${{matrix.sphinx-version}}" ]; then - python -Im tox run -e compile,py$(echo ${{ matrix.python-version }} | tr -d .)-sphinx(echo ${{ matrix.sphinx-version }} | tr -d .)-tests + python -Im tox run -e compile,py$(echo ${{ matrix.python-version }} | tr -d .)-sphinx$(echo ${{ matrix.sphinx-version }} | tr -d .)-tests # if not we use the default version # example substitution: tox run -e compile,py39-tests else