Respond to RFCs in PR #1931

pull/1931/head
Kieran Prasch 2020-05-20 22:32:01 -07:00 committed by Kieran R. Prasch
parent 851facceba
commit 3143a737de
2 changed files with 3 additions and 4 deletions

View File

@ -25,7 +25,6 @@ build-docs:
# sphinx-apidoc [OPTIONS] -o <OUTPUT_PATH> <MODULE_PATH> [EXCLUDE_PATTERN …]
$(MAKE) -C docs clean
$(MAKE) -C docs html
# $(MAKE) -C docs html
validate-docs: build-docs
# Required dependencies from docs/requirements.txt

View File

@ -99,8 +99,8 @@ class PostDevelopCommand(develop):
def read_requirements(path):
with open(os.path.join(BASE_DIR, path)) as f:
_PIPENV_FLAGS, *REQUIREMENTS = f.read().split('\n')
return REQUIREMENTS
_pipenv_flags, *requirements = f.read().split('\n')
return requirements
INSTALL_REQUIRES = read_requirements('requirements.txt')
@ -131,7 +131,7 @@ setup(
# Requirements
python_requires='>=3',
setup_requires=['pytest-runner', 'setuptools-markdown'],
setup_requires=['setuptools-markdown'],
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS,