Skip to content

Commit

Permalink
Silence Sphinx build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bhrutledge committed Sep 12, 2021
1 parent 8ab82fd commit 2b690fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -63,7 +63,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
# Mininum supported Python version
python-version: 3.6
- name: Install dependencies
run: python -m pip install tox
- name: Build docs
Expand Down
3 changes: 2 additions & 1 deletion .readthedocs.yaml
Expand Up @@ -14,7 +14,8 @@ formats:
- epub

python:
version: 3.8
# Mininum supported Python version
version: "3.6"
install:
- requirements: docs/requirements.txt
- method: pip
Expand Down
4 changes: 3 additions & 1 deletion docs/conf.py
Expand Up @@ -272,6 +272,8 @@
"https://github.com/pypa/twine/issues/*",
# Avoid errors from channels interpreted as anchors
"https://web.libera.chat/#",
# Avoid error from InvalidPyPIUploadURL docstring
"https://upload.pypi.org/legacy",
]

# Example configuration for intersphinx: refer to the Python standard library.
Expand All @@ -282,7 +284,7 @@

# TODO: Try to add these to intersphinx_mapping
nitpick_ignore_regex = [
(r"py:.*", r"(pkginfo|requests)\..*"),
(r"py:.*", r"(pkginfo|requests|IO).*"),
]

# -- Options for apidoc output ------------------------------------------------
Expand Down

0 comments on commit 2b690fc

Please sign in to comment.