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
WebOb>=1.2.3
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
python-daemon>=2.0.4,<2.1.0
extras

View File

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