From e04f975333c7d93437a0b034d06d7ea88acba4d0 Mon Sep 17 00:00:00 2001 From: Oscar Esteban Date: Wed, 10 Oct 2018 12:01:49 -0400 Subject: [PATCH 1/2] [FIX] Pin codecov to <5.0 so Travis is fixed Fixes #2727 --- nipype/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/info.py b/nipype/info.py index a2a220f238..10c8cb8534 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -154,7 +154,7 @@ def get_nipype_gitversion(): if sys.version_info <= (3, 4): REQUIRES.append('configparser') -TESTS_REQUIRES = ['pytest-cov', 'codecov', 'pytest-env'] +TESTS_REQUIRES = ['pytest-cov', 'codecov<5', 'pytest-env'] EXTRA_REQUIRES = { 'doc': ['Sphinx>=1.4', 'numpydoc', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'], From c1fa104108a55cd666ac4db8fc16d35dddc3bc5e Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 10 Oct 2018 12:05:28 -0400 Subject: [PATCH 2/2] FIX: Pin coverage<5 --- nipype/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/info.py b/nipype/info.py index 10c8cb8534..5efb4282b6 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -154,7 +154,7 @@ def get_nipype_gitversion(): if sys.version_info <= (3, 4): REQUIRES.append('configparser') -TESTS_REQUIRES = ['pytest-cov', 'codecov<5', 'pytest-env'] +TESTS_REQUIRES = ['pytest-cov', 'codecov', 'pytest-env', 'coverage<5'] EXTRA_REQUIRES = { 'doc': ['Sphinx>=1.4', 'numpydoc', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],