Skip to content

Commit

Permalink
Update Sphinx to 7.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Oct 6, 2023
1 parent ae76e81 commit 94c43d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.8"
python: "3.9"

sphinx:
configuration: docs/conf.py
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ help:
clean: ## Clean build artifacts
rm -rf build dist src/${PROJECT}.egg-info .tox
rm -rf docs/_build/*
find ${PROJECT}/ tests/ -name __pycache__ | xargs rm -rf
find ${PROJECT}/ tests/ -name '*.pyc' | xargs rm -rf
find src/${PROJECT}/ tests/ -name __pycache__ | xargs rm -rf
find src/${PROJECT}/ tests/ -name '*.pyc' | xargs rm -rf

.PHONY: lint
lint: ## Lint and black reformat files
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ wheel==0.41.2

tomli>=1.1.0; python_version < '3.11'

# NOTE(willkg): when we drop support for Python 3.7, we can upgrade these
Sphinx==5.3.0
sphinx-rtd-theme==1.0.0
Sphinx==7.2.6; python_version > "3.8"
Sphinx==6.2.1; python_version <= "3.8"
sphinx_rtd_theme==1.3.0

0 comments on commit 94c43d2

Please sign in to comment.