We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc5ed4 commit 2ce0702Copy full SHA for 2ce0702
conda-recipe/bld.bat
@@ -44,3 +44,9 @@ if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
44
copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER%
45
if errorlevel 1 exit 1
46
)
47
+
48
+REM Delete artifacts from package
49
+del %PREFIX%\setup.py
50
+del %PREFIX%\LICENSE
51
+del %PREFIX%\README.md
52
+del %PREFIX%\MANIFEST.in
conda-recipe/build.sh
@@ -33,3 +33,9 @@ ${PYTHON} -m pip install dist/numba_dpex*.whl
33
if [[ -v WHEELS_OUTPUT_FOLDER ]]; then
34
cp dist/numba_dpex*.whl "${WHEELS_OUTPUT_FOLDER[@]}"
35
fi
36
37
+# Delete artifacts from package
38
+rm ${PREFIX}/setup.py
39
+rm ${PREFIX}/LICENSE
40
+rm ${PREFIX}/README.md
41
+rm ${PREFIX}/MANIFEST.in
0 commit comments