fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/40185?usp=email )
Change subject: jenkins.sh: workaround for 'usage: build.py' in docs ......................................................................
jenkins.sh: workaround for 'usage: build.py' in docs
Recent versions of cmd2 have changed how the 'prog' attribute is automatically set for ArgumentParser instances. As a result, we are now seeing an unexpected 'build.py' artifact appearing in the generated documentation.
Let's use an older release of cmd2, which retains the old expected behavior. Use it specifically for building documentation.
Change-Id: Ifbad35adc5e9d3141acfd024d7dee2a25f1cb62e Related: https://github.com/python-cmd2/cmd2/issues/1414 Related: OS#6776 --- M contrib/jenkins.sh 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/85/40185/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index de1d9f8..63087f0 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -82,6 +82,10 @@
pip install -r requirements.txt
+ # XXX: workaround for https://github.com/python-cmd2/cmd2/issues/1414 + # 2.4.3 was the last stable release not affected by this bug (OS#6776) + pip install cmd2==2.4.3 + rm -rf docs/_build make -C "docs" html latexpdf