Skip to content

Commit

Permalink
feat: fixed nox file conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
vi3k6i5 committed Apr 22, 2021
2 parents a816ab9 + 00e2ee8 commit 526bc00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -18,6 +18,8 @@

import sys
import os

from version import __version__
import shlex

# If extensions (or modules to document with autodoc) are in another directory,
Expand All @@ -29,8 +31,6 @@
# See also: https://github.com/docascode/sphinx-docfx-yaml/issues/85
sys.path.insert(0, os.path.abspath("."))

__version__ = ""

# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down Expand Up @@ -352,7 +352,7 @@
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"python": ("https://python.readthedocs.org/en/latest/", None),
"google-auth": ("https://googleapis.dev/python/google-auth/latest/", None),
"google-auth": ("https://google-auth.readthedocs.io/en/stable/", None),
"google.api_core": (
"https://googleapis.dev/python/google-api-core/latest/",
None,
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -131,12 +131,12 @@ def docs(session):
def docfx(session):
"""Build the docfx yaml files for this library."""

session.install("-e", ".")
session.install("-e", ".[tracing]")
session.install(
"sphinx",
"alabaster",
"recommonmark",
"sphinx-docfx-yaml",
"gcp-sphinx-docfx-yaml",
"django==2.2",
)

Expand Down

0 comments on commit 526bc00

Please sign in to comment.