diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-19 21:09:54 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-19 21:17:05 -0500 |
commit | 71815558fb8cd44028d838b693f2083a3e969c74 (patch) | |
tree | 90a7b6aa527636e9ba03c058e5980590babaca02 | |
parent | 6b628e370caa6cf42faea1253e005881adebf041 (diff) | |
download | python-setuptools-git-71815558fb8cd44028d838b693f2083a3e969c74.tar.gz |
Remove bootstrap from docs build
-rw-r--r-- | docs/conf.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/conf.py b/docs/conf.py index 8cb959df..18cd7bdc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,11 +1,3 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -import subprocess -import sys -import os - - extensions = ['sphinx.ext.autodoc', 'jaraco.packaging.sphinx', 'rst.linker'] master_doc = "index" @@ -82,14 +74,6 @@ link_files = { } -# hack to run the bootstrap script so that jaraco.packaging.sphinx -# can invoke setup.py -'READTHEDOCS' in os.environ and subprocess.check_call( - [sys.executable, '-m', 'bootstrap'], - cwd=os.path.join(os.path.dirname(__file__), os.path.pardir), -) - - # Add support for linking usernames github_url = 'https://github.com' github_sponsors_url = f'{github_url}/sponsors' |