File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2222 print ("Value {} for USE_DISTUTILS treated as False" .
2323 format (use_distutils ))
2424
25+ from distutils .command .build import build as _build
26+
2527if use_setuptools :
2628 try :
2729 from setuptools import setup
2830 from setuptools .command .install import install as _install
2931 from setuptools .command .build_ext import build_ext as _build_ext
30- from setuptools .command .build import build as _build
3132 except ImportError :
3233 use_setuptools = False
3334
3435if not use_setuptools :
3536 from distutils .core import setup
3637 from distutils .command .install import install as _install
3738 from distutils .command .build_ext import build_ext as _build_ext
38- from distutils .command .build import build as _build
3939
4040cmake_opts = [("PYTHON_BIN" , sys .executable ),
4141 ("CMAKE_INSTALL_RPATH_USE_LINK_PATH" , "yes" )]
You can’t perform that action at this time.
0 commit comments