Skip to content

Commit e0a80f8

Browse files
committed
MNT: Pin rdflib >=5
1 parent c57b4fa commit e0a80f8

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

nipype/info.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ def get_nipype_gitversion():
109109
FUTURE_MIN_VERSION = "0.16.0"
110110
SIMPLEJSON_MIN_VERSION = "3.8.0"
111111
PROV_VERSION = "1.5.2"
112+
RDFLIB_MIN_VERSION = "5.0.0"
112113
CLICK_MIN_VERSION = "6.6.0"
113114
PYDOT_MIN_VERSION = "1.2.3"
114115

@@ -143,17 +144,14 @@ def get_nipype_gitversion():
143144
"pydot>=%s" % PYDOT_MIN_VERSION,
144145
"pydotplus",
145146
"python-dateutil>=%s" % DATEUTIL_MIN_VERSION,
147+
"rdflib>=%s" % RDFLIB_MIN_VERSION,
146148
"scipy>=%s" % SCIPY_MIN_VERSION,
147149
"simplejson>=%s" % SIMPLEJSON_MIN_VERSION,
148150
"traits>=%s,!=5.0" % TRAITS_MIN_VERSION,
149151
"filelock>=3.0.0",
150152
"etelemetry>=0.2.0",
151153
]
152154

153-
# neurdflib has to come after prov
154-
# https://github.com/nipy/nipype/pull/2961#issuecomment-512035484
155-
REQUIRES += ["neurdflib"]
156-
157155
TESTS_REQUIRES = [
158156
"codecov",
159157
"coverage<5",

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
click>=6.6.0
33
networkx>=1.9
44
nibabel>=2.1.0
5-
numpy>=1.12 ; python_version < "3.7"
5+
numpy>=1.13 ; python_version < "3.7"
66
numpy>=1.15.3 ; python_version >= "3.7"
77
packaging
88
prov>=1.5.2
99
pydot>=1.2.3
1010
pydotplus
1111
python-dateutil>=2.2
12+
rdflib>=5.0.0
1213
scipy>=0.14
1314
simplejson>=3.8.0
1415
traits>=4.6,!=5.0
1516
filelock>=3.0.0
16-
etelemetry
17-
neurdflib
17+
etelemetry>=0.2.0

0 commit comments

Comments
 (0)