Skip to content

Commit 1a86904

Browse files
committed
MNT: Drop future, configparser from setup_requires
1 parent 3c96972 commit 1a86904

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

setup.py

-6
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
1313
"""
1414
# Build helper
15-
import sys
16-
from glob import glob
1715
import os
1816
from 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},

0 commit comments

Comments
 (0)