File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if %ERRORLEVEL% neq 0 exit 1
1616:: `pip install dist\numpy*.whl` does not work on windows,
1717:: so use a loop; there's only one wheel in dist/ anyway
1818for /f %%f in ('dir /b /S .\dist') do (
19- %PYTHON% -m wheel tags --remove --build %GIT_DESCRIBE_NUMBER% %%f
19+ %PYTHON% -m wheel tags --remove %%f
2020 if %ERRORLEVEL% neq 0 exit 1
2121)
2222
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export VERBOSE=1
1414# -wnx flags mean: --wheel --no-isolation --skip-dependency-check
1515${PYTHON} -m build -w -n -x
1616
17- ${PYTHON} -m wheel tags --remove --build " $GIT_DESCRIBE_NUMBER " \
17+ ${PYTHON} -m wheel tags --remove \
1818 --platform-tag " manylinux_${GLIBC_MAJOR} _${GLIBC_MINOR} _x86_64" \
1919 dist/mkl_service* .whl
2020
Original file line number Diff line number Diff line change 1+ {% set version = "2.5.1" %}
2+ {% set buildnumber = 0 %}
3+
14package :
25 name : mkl-service
3- version : {{ GIT_DESCRIBE_TAG }}
6+ version : {{ version }}
47
58source :
69 path : ..
710
811build :
9- number : {{ GIT_DESCRIBE_NUMBER }}
12+ number : {{ buildnumber }}
1013 script_env :
1114 - WHEELS_OUTPUT_FOLDER
1215 ignore_run_exports :
You can’t perform that action at this time.
0 commit comments