Skip to content

Commit 2995ded

Browse files
authored
Merge pull request #2701 from satra/fix/prov
[MRG] Fix prov and rdflib in nipype
2 parents 39675df + 6d3e209 commit 2995ded

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

nipype/info.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def get_nipype_gitversion():
108108
PYTEST_MIN_VERSION = '3.0'
109109
FUTURE_MIN_VERSION = '0.16.0'
110110
SIMPLEJSON_MIN_VERSION = '3.8.0'
111-
PROV_VERSION = '1.5.0'
111+
PROV_VERSION = '1.5.2'
112112
CLICK_MIN_VERSION = '6.6.0'
113113
PYDOT_MIN_VERSION = '1.2.3'
114114

@@ -139,7 +139,8 @@ def get_nipype_gitversion():
139139
'traits>=%s' % TRAITS_MIN_VERSION,
140140
'future>=%s' % FUTURE_MIN_VERSION,
141141
'simplejson>=%s' % SIMPLEJSON_MIN_VERSION,
142-
'prov==%s' % PROV_VERSION,
142+
'prov>=%s' % PROV_VERSION,
143+
'neurdflib',
143144
'click>=%s' % CLICK_MIN_VERSION,
144145
'funcsigs',
145146
'pytest>=%s' % PYTEST_MIN_VERSION,

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ python-dateutil>=2.2
66
nibabel>=2.1.0
77
future>=0.16.0
88
simplejson>=3.8.0
9-
prov==1.5.0
9+
prov>=1.5.2
10+
neurdflib
1011
click>=6.6.0
1112
funcsigs
1213
configparser

0 commit comments

Comments
 (0)