From 628eb6d1deda13201887b40a93b45665ce25c758 Mon Sep 17 00:00:00 2001 From: danielmcmir <92501888+danielmcmir@users.noreply.github.com> Date: Thu, 9 Jun 2022 16:30:44 +1000 Subject: [PATCH] Update GitPython dependency Fixes gitdb import issue See https://github.com/gitpython-developers/GitPython/issues/983 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f9c304d..cee2577 100644 --- a/setup.py +++ b/setup.py @@ -15,10 +15,10 @@ long_description=long_description, long_description_content_type="text/markdown", install_requires=[ - 'GitPython == 2.1.11' + 'GitPython == 2.1.15' ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License" ] -) \ No newline at end of file +)