admin: move python-common deps out of doc-requirements.txt

to address the build failure of

python -m pip install --exists-action=w --no-cache-dir -r admin/doc-requirements.txt
ERROR: ../src/python-common is not a valid editable requirement. It should either be a path to a local project or a VCS URL (beginning with svn+, git+, hg+, or bzr+).

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2020-07-06 19:11:39 +08:00
parent 0021dd278b
commit b83be6f33b
3 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ cd build-doc
if [ ! -e $vdir ]; then
virtualenv --python=python3 $vdir
fi
$vdir/bin/pip install --quiet -r $TOPDIR/admin/doc-requirements.txt
$vdir/bin/pip install --quiet -r $TOPDIR/admin/doc-requirements.txt -r $TOPDIR/admin/doc-python-common-requirements.txt
install -d -m0755 \
$TOPDIR/build-doc/output/html \

View File

@ -0,0 +1,3 @@
pcpp
Jinja2
-e../src/python-common

View File

@ -6,6 +6,3 @@ Cython
prettytable
sphinx-autodoc-typehints == 1.10.3
typed-ast
pcpp
-e../src/python-common
Jinja2