File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
22
from setuptools import find_packages
23
23
from setuptools .command .test import test as TestCommand
24
24
from Cython .Build import cythonize
25
- import six
26
25
import sys , os , platform
27
26
if platform .system ().lower () == 'darwin' :
28
27
# gcc-4.2 on Mac OS X does not work with OpenMP
@@ -59,6 +58,7 @@ def run_tests(self):
59
58
60
59
# import here, cause outside the eggs aren't loaded
61
60
import pytest
61
+ import six
62
62
63
63
args = [self .pytest_args ] if isinstance (self .pytest_args , six .string_types ) else list (self .pytest_args )
64
64
args .extend (['--cov' , 'arctic' ,
@@ -88,7 +88,8 @@ def run_tests(self):
88
88
long_description = '\n ' .join ((long_description , changelog )),
89
89
cmdclass = {'test' : PyTest },
90
90
ext_modules = cythonize (compress ),
91
- setup_requires = ["Cython" ,
91
+ setup_requires = ["six" ,
92
+ "Cython" ,
92
93
"numpy" ,
93
94
"setuptools-git" ,
94
95
],
You can’t perform that action at this time.
0 commit comments