File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -44,3 +44,10 @@ if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
44
44
copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER%
45
45
if errorlevel 1 exit 1
46
46
)
47
+
48
+ REM Delete artifacts from package
49
+ rd /s /q " %PREFIX% \__pycache__"
50
+ del " %PREFIX% \setup.py"
51
+ del " %PREFIX% \LICENSE"
52
+ del " %PREFIX% \README.md"
53
+ del " %PREFIX% \MANIFEST.in"
Original file line number Diff line number Diff line change @@ -33,3 +33,10 @@ ${PYTHON} -m pip install dist/numba_dpex*.whl
33
33
if [[ -v WHEELS_OUTPUT_FOLDER ]]; then
34
34
cp dist/numba_dpex* .whl " ${WHEELS_OUTPUT_FOLDER[@]} "
35
35
fi
36
+
37
+ # Delete artifacts from package
38
+ rm -rf " ${PREFIX} /__pycache__"
39
+ rm " ${PREFIX} /setup.py"
40
+ rm " ${PREFIX} /LICENSE"
41
+ rm " ${PREFIX} /README.md"
42
+ rm " ${PREFIX} /MANIFEST.in"
You can’t perform that action at this time.
0 commit comments