Skip to content

Commit

Permalink
Require sphinx>=5.0.2, update python version in readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydenpersonnat committed May 29, 2024
1 parent c0f6b9a commit 7d287c0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: ubuntu-latest
python-version: '3.6'
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.8"
python: "3.9"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pytz==2021.3
requests==2.26.0
snowballstemmer==2.2.0
soupsieve==2.3.1
Sphinx==4.3.1
Sphinx>=5.0.2
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.0
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ pytest>=4.6
pytest-xdist[psutil]
mock
pytest-cov
sphinx==5.0.2
sphinx>=5.0.2
scipy;python_version<"3.10"
setuptools
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ def get_version(rel_path):
'pytest-xdist[psutil]',
'mock',
'pytest-cov',
"sphinx==5.0.2",
"sphinx>=5.0.2",
'scipy;python_version<"3.10"',
"setuptools"
]

DOCS_REQUIRES = [
"sphinx==5.0.2",
"sphinx>=5.0.2",
"pydata-sphinx-theme==0.7.2",
"nbsphinx",
]
Expand Down

0 comments on commit 7d287c0

Please sign in to comment.