From b6efedb4358e33ba5226e8d87177d59946e39558 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Thu, 23 Aug 2018 13:07:46 +0200 Subject: [PATCH] Fix: Set explicit version of gitlab python module --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index afc2322..11c06be 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( package_dir={'': 'src'}, packages=find_packages(where='src'), install_requires=[ - 'python-gitlab', + 'python-gitlab >= 1.5.1', ], setup_requires=["pytest-runner"], tests_require=["pytest"],