diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 11:54:02 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 11:54:02 -0500 |
commit | 94f88bf48af78c4f961fe42241da556837efa3c1 (patch) | |
tree | 44aceec9ff1e6ed1971ee0c1b12e4bbc6a332e60 /docs/conf.py | |
parent | 7f6394863dc096b9f31e71a5843acbd836ff8d6c (diff) | |
download | external_python_setuptools-94f88bf48af78c4f961fe42241da556837efa3c1.tar.gz external_python_setuptools-94f88bf48af78c4f961fe42241da556837efa3c1.tar.bz2 external_python_setuptools-94f88bf48af78c4f961fe42241da556837efa3c1.zip |
Bootstrap the environment in tox, allowing simple 'tox' to run tests and simplifying all of the pipelines.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index cbd19fb4..6f6ae13a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ import os # 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, 'bootstrap.py'], + [sys.executable, '-m', 'bootstrap'], cwd=os.path.join(os.path.dirname(__file__), os.path.pardir), ) |