summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-02-01 10:11:24 -0500
committerGitHub <noreply@github.com>2021-02-01 10:11:24 -0500
commita96ab21c5da30e71daa69f5b645097a86e8dc492 (patch)
treeb512429118360703a242b8bfcda6746e9c9a4800 /docs
parente1ffc2abbae4f2aa78dd09ee9827d754b7702b7b (diff)
parente3e7ff854038788d56d6d7f6624357b81341e876 (diff)
downloadpython-setuptools-git-a96ab21c5da30e71daa69f5b645097a86e8dc492.tar.gz
Merge pull request #2543 from pypa/bugfix/1996-no-bootstrap
Remove bootstrap script
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py16
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'