Skip to content

Commit

Permalink
chore: remove multiprocessing note
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Oct 30, 2020
1 parent a44921f commit 2b57b0e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 40 deletions.
7 changes: 0 additions & 7 deletions docs/multiprocessing.rst

This file was deleted.

33 changes: 0 additions & 33 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,39 +172,6 @@ def docs(session):
)


@nox.session(python="3.7")
def docfx(session):
"""Build the docfx yaml files for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
"sphinx-build",
"-T", # show full traceback on exception
"-N", # no colors
"-D",
(
"extensions=sphinx.ext.autodoc,"
"sphinx.ext.autosummary,"
"docfx_yaml.extension,"
"sphinx.ext.intersphinx,"
"sphinx.ext.coverage,"
"sphinx.ext.napoleon,"
"sphinx.ext.todo,"
"sphinx.ext.viewcode,"
"recommonmark"
),
"-b",
"html",
"-d",
os.path.join("docs", "_build", "doctrees", ""),
os.path.join("docs", ""),
os.path.join("docs", "_build", "html", ""),
)


@nox.session(python=DEFAULT_PYTHON_VERSION)
def docfx(session):
"""Build the docfx yaml files for this library."""
Expand Down

0 comments on commit 2b57b0e

Please sign in to comment.