From aac27d5c8396df48e3e3a7edbad07e1f09c83725 Mon Sep 17 00:00:00 2001 From: Dabeluchi Ndubisi Date: Mon, 24 Feb 2020 09:06:20 -0500 Subject: [PATCH 1/2] pin astroid dependency to fix failing tests --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 42cf99d..14af4d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ pytest-randomly==1.1.2 mock==2.0.0 mypy==0.501 ; python_version >= "3.3" +astroid>=1.6,<=2.0.4 From d946ed493ff89c60c9284c62939829aa558f4c22 Mon Sep 17 00:00:00 2001 From: Dabeluchi Ndubisi Date: Fri, 21 Feb 2020 09:07:46 -0500 Subject: [PATCH 2/2] gate typing package to < 3.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f05e523..c293a54 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def get_version(): test_suite='tests', install_requires=[ 'GitPython~=2.1.11', - 'typing~=3.6.6', + 'typing~=3.6.6 ; python_version<"3.5"', 'autopep8~=1.4', ], extras_require={