summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKelley Spoon <kelley.spoon@linaro.org>2021-11-30 13:38:45 -0600
committerKelley Spoon <kelley.spoon@linaro.org>2021-11-30 13:38:45 -0600
commit6d158f9eb6d29f2866346a299aafdd92accb37be (patch)
treedc4b32a22caff06e1d449f7b47af7c3cb02d1a0d
parentdcf3a70e2a5d9a3665305d15161525b5a2434bf2 (diff)
patchwork-tools: add requirement for GitPython
The server running patches.l.o is using python-3.5, but the GitPython developers have dropped support it. In order to prevent random exceptions due to backwards incompatible code, we have to pin the version of GitPython to 3.1.14 as it's the last version to support python-3.5. Change-Id: If273266c23dd3ce6bbcdc15348571028d0388a82
-rw-r--r--requirements.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index 2808656..3aa3b80 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -8,3 +8,4 @@ flake8
python-ldap==3.3.1
django-auth-ldap==1.6.1
virtualenv
+GitPython==3.1.14