Skip to content

Commit 057f53c

Browse files
committed
Change pip to install in build scripts
1 parent 8aa2934 commit 057f53c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

conda-recipe-cf/bld.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@rem Remember to source the compiler
22

33
set MKLROOT=%CONDA_PREFIX%
4-
%PYTHON% setup.py install
4+
%PYTHON% -m pip install --no-build-isolation --no-deps .
55
if errorlevel 1 exit 1

conda-recipe-cf/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
export CFLAGS="-I$PREFIX/include $CFLAGS"
44
export MKLROOT=$CONDA_PREFIX
5-
$PYTHON setup.py install
5+
$PYTHON -m pip install --no-build-isolation --no-deps .

conda-recipe/bld.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@rem Remember to source the compiler
22

33
set MKLROOT=%CONDA_PREFIX%
4-
%PYTHON% setup.py install
4+
%PYTHON% -m pip install --no-build-isolation --no-deps .
55
if errorlevel 1 exit 1

conda-recipe/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
export CFLAGS="-I$PREFIX/include $CFLAGS"
44
export MKLROOT=$CONDA_PREFIX
5-
$PYTHON setup.py install
5+
$PYTHON -m pip install --no-build-isolation --no-deps .

0 commit comments

Comments
 (0)