@@ -56,6 +56,7 @@ def get_nipype_gitversion():
56
56
"Operating System :: POSIX :: Linux" ,
57
57
"Programming Language :: Python :: 3.6" ,
58
58
"Programming Language :: Python :: 3.7" ,
59
+ "Programming Language :: Python :: 3.8" ,
59
60
"Topic :: Scientific/Engineering" ,
60
61
]
61
62
PYTHON_REQUIRES = ">= 3.6"
@@ -109,6 +110,7 @@ def get_nipype_gitversion():
109
110
FUTURE_MIN_VERSION = "0.16.0"
110
111
SIMPLEJSON_MIN_VERSION = "3.8.0"
111
112
PROV_VERSION = "1.5.2"
113
+ RDFLIB_MIN_VERSION = "5.0.0"
112
114
CLICK_MIN_VERSION = "6.6.0"
113
115
PYDOT_MIN_VERSION = "1.2.3"
114
116
@@ -143,17 +145,14 @@ def get_nipype_gitversion():
143
145
"pydot>=%s" % PYDOT_MIN_VERSION ,
144
146
"pydotplus" ,
145
147
"python-dateutil>=%s" % DATEUTIL_MIN_VERSION ,
148
+ "rdflib>=%s" % RDFLIB_MIN_VERSION ,
146
149
"scipy>=%s" % SCIPY_MIN_VERSION ,
147
150
"simplejson>=%s" % SIMPLEJSON_MIN_VERSION ,
148
151
"traits>=%s,!=5.0" % TRAITS_MIN_VERSION ,
149
152
"filelock>=3.0.0" ,
150
153
"etelemetry>=0.2.0" ,
151
154
]
152
155
153
- # neurdflib has to come after prov
154
- # https://github.com/nipy/nipype/pull/2961#issuecomment-512035484
155
- REQUIRES += ["neurdflib" ]
156
-
157
156
TESTS_REQUIRES = [
158
157
"codecov" ,
159
158
"coverage<5" ,
0 commit comments