Add comment explaining gitpython requirement

Also clean up some tabs.

Change-Id: If641a164c21dc7b13d48548558ea16e0c0a0b400
This commit is contained in:
James E. Blair 2017-10-10 11:15:06 -07:00
parent f03173b72f
commit 8fdef74333
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