From 37d299b3010e4beb1e593e9a78842e96438d9bd5 Mon Sep 17 00:00:00 2001 From: sciencewhiz Date: Wed, 4 Oct 2023 05:51:44 -0700 Subject: [PATCH] Sphinx 4 doesn't support Python >=3.10 --- .github/workflows/workflow.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 7e26ef4..814129f 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -26,12 +26,16 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10'] - sphinx-version: ['4', '5', '6', '7'] + sphinx-version: ['5', '6', '7'] include: - python-version: '3.7' sphinx-version: '3' - python-version: '3.7' sphinx-version: '2' + - python-version: '3.8' + sphinx-version: '4' + - python-version: '3.9' + sphinx-version: '4' name: "Test Extension - Python(${{ matrix.python-version }}), Sphinx(${{ matrix.sphinx-version }})" steps: - uses: actions/checkout@v4