File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 1212
1313"""
1414# Build helper
15- import sys
16- from glob import glob
1715import os
1816from os .path import join as pjoin
1917
@@ -115,9 +113,6 @@ def main():
115113 with open (ver_file ) as infofile :
116114 exec (infofile .read (), globals (), ldict )
117115
118- SETUP_REQUIRES = ["future" ]
119- if sys .version_info <= (3 , 4 ):
120- SETUP_REQUIRES .append ("configparser" )
121116 setup (
122117 name = ldict ["NAME" ],
123118 maintainer = ldict ["MAINTAINER" ],
@@ -134,7 +129,6 @@ def main():
134129 version = ldict ["VERSION" ],
135130 python_requires = ldict ["PYTHON_REQUIRES" ],
136131 install_requires = ldict ["REQUIRES" ],
137- setup_requires = SETUP_REQUIRES ,
138132 provides = ldict ["PROVIDES" ],
139133 packages = find_packages (),
140134 package_data = {"nipype" : testdatafiles },
You can’t perform that action at this time.
0 commit comments