Skip to content

Commit 3d51b7c

Browse files
committed
Possible fix for symbolic link issue
1 parent 1e7a526 commit 3d51b7c

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

conda-recipe/bld.bat

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,14 @@ for /f %%f in ('dir /b /S .\dist') do (
5050
if %ERRORLEVEL% neq 0 exit 1
5151
)
5252

53-
:: wheel file was renamed
54-
for /f %%f in ('dir /b /S .\dist') do (
55-
%PYTHON% -m pip install %%f ^
56-
--no-build-isolation ^
57-
--no-deps ^
58-
--only-binary :all: ^
59-
--no-index ^
60-
--prefix %PREFIX% ^
61-
-vv
62-
if %ERRORLEVEL% neq 0 exit 1
63-
)
53+
%PYTHON% -m pip install . ^
54+
--no-build-isolation ^
55+
--no-deps ^
56+
--only-binary :all: ^
57+
--no-index ^
58+
--prefix %PREFIX% ^
59+
-vv
60+
if %ERRORLEVEL% neq 0 exit 1
6461

6562
:: Copy wheel package
6663
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export VERBOSE=1
2323
${PYTHON} -m build -w -n -x
2424
${PYTHON} -m wheel tags --remove --build "$GIT_DESCRIBE_NUMBER" \
2525
--platform-tag manylinux2014_x86_64 dist/dpctl*.whl
26-
${PYTHON} -m pip install dist/dpctl*.whl \
26+
${PYTHON} -m pip install . \
2727
--no-build-isolation \
2828
--no-deps \
2929
--only-binary :all: \

0 commit comments

Comments
 (0)