Merge "Add comment explaining gitpython requirement" into feature/zuulv3

This commit is contained in:
Zuul 2017-10-10 20:13:36 +00:00 committed by Gerrit Code Review
commit 97081c8389
2 changed files with 10 additions and 6 deletions

View File

@ -7,6 +7,10 @@ PyYAML>=3.1.0
Paste Paste
WebOb>=1.2.3 WebOb>=1.2.3
paramiko>=1.8.0,<2.0.0 paramiko>=1.8.0,<2.0.0
# Using a local fork of gitpython until at least these changes are in a
# release.
# https://github.com/gitpython-developers/GitPython/pull/682
# https://github.com/gitpython-developers/GitPython/pull/686
-e git+https://github.com/jeblair/GitPython.git@zuul#egg=GitPython -e git+https://github.com/jeblair/GitPython.git@zuul#egg=GitPython
python-daemon>=2.0.4,<2.1.0 python-daemon>=2.0.4,<2.1.0
extras extras

View File

@ -3,12 +3,12 @@
echo $* echo $*
case "$1" in case "$1" in
clone) clone)
dest=$3 dest=$3
mkdir -p $dest/.git mkdir -p $dest/.git
;; ;;
version) version)
echo "git version 1.0.0" echo "git version 1.0.0"
exit 0 exit 0
;; ;;
esac esac
sleep 30 sleep 30