We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acffa53 commit 26fc2b5Copy full SHA for 26fc2b5
.github/workflows/build.yaml
@@ -32,7 +32,7 @@ jobs:
32
run: |
33
python -m pip install --upgrade pip
34
pip install -r requirements.txt
35
- pip install urwid twisted watchdog "jedi >=0.16" babel "sphinx >=1.5"
+ pip install urwid twisted watchdog "jedi >=0.16" babel "sphinx >=1.5,<7"
36
pip install pytest pytest-cov numpy
37
- name: Build with Python ${{ matrix.python-version }}
38
setup.py
@@ -20,7 +20,7 @@
20
from sphinx.setup_command import BuildDoc
21
22
# Sphinx 1.5 and newer support Python 3.6
23
- using_sphinx = sphinx.__version__ >= "1.5"
+ using_sphinx = sphinx.__version__ >= "1.5" and sphinx.__version__ < "7.0"
24
except ImportError:
25
using_sphinx = False
26
0 commit comments