We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13c2ba commit 12622faCopy full SHA for 12622fa
2 files changed
conda-recipe/bld.bat
@@ -1,5 +1,3 @@
1
-@rem Remember to activate Intel Compiler, or remoe these two lines to ise Microsoft Visual Studio compiler
2
-
3
set MKLROOT=%PREFIX%
4
-%PYTHON% setup.py build --force install --old-and-unmanageable
+%PYTHON% -m pip install --no-build-isolation --no-deps .
5
if errorlevel 1 exit 1
conda-recipe/build.sh
@@ -1,9 +1,10 @@
#!/bin/bash -x
-# make sure that compiler has been sourced, if necessary
if [ `uname` == Darwin ]; then
6
export MACOSX_DEPLOYMENT_TARGET=10.9
7
fi
8
9
-MKLROOT=$PREFIX CFLAGS="-I$PREFIX/include $CFLAGS" $PYTHON setup.py build --force install --old-and-unmanageable
+export MKLROOT=$PREFIX
+export CFLAGS="-I$PREFIX/include $CFLAGS"
+$PYTHON -m pip install --no-build-isolation --no-deps .
10
+
0 commit comments