Skip to content

Commit

Permalink
chore: Bump docs dependencies (#2544)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 17, 2024
1 parent 32c059b commit b566a5b
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 97 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.12"

sphinx:
builder: html
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def docs_serve(session: Session) -> None:
"build",
"-W",
]
session.install(".[docs]")
session.install(".[docs]", "sphinx-autobuild")

build_dir = Path("build")
if build_dir.exists():
Expand Down
116 changes: 31 additions & 85 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 7 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,13 @@ urllib3 = ">=1.26,<2"

# Sphinx dependencies installed as optional 'docs' extras
# https://github.com/readthedocs/readthedocs.org/issues/4912#issuecomment-664002569
sphinx = {version = ">=4.5", optional = true}
furo = {version = ">=2022.12.7", optional = true}
sphinx-copybutton = {version = ">=0.3.1", optional = true}
myst-parser = {version = ">=1", optional = true}
sphinx-autobuild = {version = ">=2021.3.14", optional = true}
sphinx-inline-tabs = {version = ">=2023.4.21", optional = true}
sphinx-notfound-page = {version = ">=1.0.0", optional = true}
sphinx-reredirects = {version = ">=0.1.1", optional = true}
sphinx = {version = ">=7", python = ">=3.9", optional = true}
furo = {version = ">=2024.5.6", python = ">=3.9", optional = true}
sphinx-copybutton = {version = ">=0.5.2", python = ">=3.9", optional = true}
myst-parser = {version = ">=3", python = ">=3.9", optional = true}
sphinx-inline-tabs = {version = ">=2023.4.21", python = ">=3.9", optional = true}
sphinx-notfound-page = {version = ">=1.0.0", python = ">=3.9", optional = true}
sphinx-reredirects = {version = ">=0.1.5", python = ">=3.9", optional = true}

# File storage dependencies installed as optional 'filesystem' extras
fs-s3fs = {version = ">=1.1.1", optional = true}
Expand Down Expand Up @@ -106,7 +105,6 @@ docs = [
"pytest",
"sphinx",
"sphinx-copybutton",
"sphinx-autobuild",
"sphinx-inline-tabs",
"sphinx-notfound-page",
"sphinx-reredirects",
Expand Down Expand Up @@ -253,7 +251,6 @@ DEP002 = [
"furo",
"myst-parser",
"sphinx",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-inline-tabs",
"sphinx-notfound-page",
Expand Down

0 comments on commit b566a5b

Please sign in to comment.