Skip to content

Commit d6780e0

Browse files
jingxu10chunyuan-w
andauthored
add packaging as dependency (#2158)
Co-authored-by: Chunyuan WU <chunyuan.wu@intel.com>
1 parent bf1150d commit d6780e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ def _build_installation_dependency():
205205
install_requires = []
206206
install_requires.append("psutil")
207207
install_requires.append("numpy")
208+
install_requires.append("packaging")
208209
return install_requires
209210

210211

@@ -654,7 +655,7 @@ def run(self):
654655
use_ninja = False
655656
# Windows uses Ninja as default generator
656657
if IS_WINDOWS:
657-
use_ninja = True
658+
use_ninja = True
658659
sequential_build = False
659660

660661
cmake_common_args = []
@@ -674,7 +675,7 @@ def run(self):
674675
continue
675676
if IS_WINDOWS and var == 'USE_MSVC' and val.upper() in ON_ENV_VAL:
676677
use_ninja = False
677-
continue
678+
continue
678679
if var == "BUILD_STATS" and val.upper() in ON_ENV_VAL:
679680
sequential_build = True
680681
# fall through

0 commit comments

Comments
 (0)