Skip to content

Commit 16c972f

Browse files
committed
Drop unneeded pre-install job for RTD
1 parent f108a36 commit 16c972f

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.readthedocs.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ build:
77
os: ubuntu-22.04
88
tools:
99
python: "3.10"
10-
jobs:
11-
pre_install:
12-
- "python -m pip install sphinx-rtd-theme sphinx-autodoc-typehints"
1310

1411
python:
1512
install:

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,5 @@ def lint(session):
104104

105105
@nox.session()
106106
def docs(session):
107-
session.install("sphinx-rtd-theme", "sphinx-autodoc-typehints")
108107
session.install(".[docs]")
109108
session.run("sphinx-build", "docs/sphinx/", "docs/sphinx/_build", "-b", "html")

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ dev = [
7272
"mapbox-vector-tile",
7373
]
7474
docs = [
75-
"sphinx-rtd-theme",
75+
"sphinx-rtd-theme>=1.2.2",
7676
"sphinx-autodoc-typehints",
77-
"sphinx",
77+
"sphinx==6.2.1",
7878
]
7979

8080
[project.urls]

0 commit comments

Comments
 (0)