File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- @ rem Remember to activate Intel Compiler, or remoe these two lines to ise Microsoft Visual Studio compiler
2
-
3
1
set MKLROOT = %PREFIX%
4
- %PYTHON% setup.py build --force install --old-and-unmanageable
2
+ %PYTHON% -m pip install --no-build-isolation --no-deps .
5
3
if errorlevel 1 exit 1
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -x
2
2
3
- # make sure that compiler has been sourced, if necessary
4
-
5
3
if [ ` uname` == Darwin ]; then
6
4
export MACOSX_DEPLOYMENT_TARGET=10.9
7
5
fi
8
6
9
- MKLROOT=$PREFIX CFLAGS=" -I$PREFIX /include $CFLAGS " $PYTHON setup.py build --force install --old-and-unmanageable
7
+ export MKLROOT=$PREFIX
8
+ export CFLAGS=" -I$PREFIX /include $CFLAGS "
9
+ $PYTHON -m pip install --no-build-isolation --no-deps .
10
+
You can’t perform that action at this time.
0 commit comments