File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if %ERRORLEVEL% neq 0 exit 1
16
16
:: `pip install dist\numpy*.whl` does not work on windows,
17
17
:: so use a loop; there's only one wheel in dist/ anyway
18
18
for /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
20
20
if %ERRORLEVEL% neq 0 exit 1
21
21
)
22
22
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export VERBOSE=1
14
14
# -wnx flags mean: --wheel --no-isolation --skip-dependency-check
15
15
${PYTHON} -m build -w -n -x
16
16
17
- ${PYTHON} -m wheel tags --remove --build " $GIT_DESCRIBE_NUMBER " \
17
+ ${PYTHON} -m wheel tags --remove \
18
18
--platform-tag " manylinux_${GLIBC_MAJOR} _${GLIBC_MINOR} _x86_64" \
19
19
dist/mkl_service* .whl
20
20
Original file line number Diff line number Diff line change
1
+ {% set version = "2.5.1" %}
2
+ {% set buildnumber = 0 %}
3
+
1
4
package :
2
5
name : mkl-service
3
- version : {{ GIT_DESCRIBE_TAG }}
6
+ version : {{ version }}
4
7
5
8
source :
6
9
path : ..
7
10
8
11
build :
9
- number : {{ GIT_DESCRIBE_NUMBER }}
12
+ number : {{ buildnumber }}
10
13
script_env :
11
14
- WHEELS_OUTPUT_FOLDER
12
15
ignore_run_exports :
You can’t perform that action at this time.
0 commit comments