Skip to content

Commit 2b57b0e

Browse files
committed
chore: remove multiprocessing note
1 parent a44921f commit 2b57b0e

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed

docs/multiprocessing.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

noxfile.py

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -172,39 +172,6 @@ def docs(session):
172172
)
173173

174174

175-
@nox.session(python="3.7")
176-
def docfx(session):
177-
"""Build the docfx yaml files for this library."""
178-
179-
session.install("-e", ".")
180-
session.install("sphinx", "alabaster", "recommonmark")
181-
182-
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
183-
session.run(
184-
"sphinx-build",
185-
"-T", # show full traceback on exception
186-
"-N", # no colors
187-
"-D",
188-
(
189-
"extensions=sphinx.ext.autodoc,"
190-
"sphinx.ext.autosummary,"
191-
"docfx_yaml.extension,"
192-
"sphinx.ext.intersphinx,"
193-
"sphinx.ext.coverage,"
194-
"sphinx.ext.napoleon,"
195-
"sphinx.ext.todo,"
196-
"sphinx.ext.viewcode,"
197-
"recommonmark"
198-
),
199-
"-b",
200-
"html",
201-
"-d",
202-
os.path.join("docs", "_build", "doctrees", ""),
203-
os.path.join("docs", ""),
204-
os.path.join("docs", "_build", "html", ""),
205-
)
206-
207-
208175
@nox.session(python=DEFAULT_PYTHON_VERSION)
209176
def docfx(session):
210177
"""Build the docfx yaml files for this library."""

0 commit comments

Comments
 (0)