File tree Expand file tree Collapse file tree 2 files changed +9
-12
lines changed Expand file tree Collapse file tree 2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -50,17 +50,14 @@ for /f %%f in ('dir /b /S .\dist') do (
50
50
if %ERRORLEVEL% neq 0 exit 1
51
51
)
52
52
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
64
61
65
62
:: Copy wheel package
66
63
if NOT " %WHEELS_OUTPUT_FOLDER% " == " " (
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export VERBOSE=1
23
23
${PYTHON} -m build -w -n -x
24
24
${PYTHON} -m wheel tags --remove --build " $GIT_DESCRIBE_NUMBER " \
25
25
--platform-tag manylinux2014_x86_64 dist/dpctl* .whl
26
- ${PYTHON} -m pip install dist/dpctl * .whl \
26
+ ${PYTHON} -m pip install . \
27
27
--no-build-isolation \
28
28
--no-deps \
29
29
--only-binary :all: \
You can’t perform that action at this time.
0 commit comments