Skip to content

Commit 2e5ec25

Browse files
committed
Rolled back changes with fetching build number from GIT_DESCRIBE envs
1 parent a029b79 commit 2e5ec25

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

conda-recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
1818
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
2020
if %ERRORLEVEL% neq 0 exit 1
2121
)
2222

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

conda-recipe/meta.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1+
{% set version = "2.5.1" %}
2+
{% set buildnumber = 0 %}
3+
14
package:
25
name: mkl-service
3-
version: {{ GIT_DESCRIBE_TAG }}
6+
version: {{ version }}
47

58
source:
69
path: ..
710

811
build:
9-
number: {{ GIT_DESCRIBE_NUMBER }}
12+
number: {{ buildnumber }}
1013
script_env:
1114
- WHEELS_OUTPUT_FOLDER
1215
ignore_run_exports:

0 commit comments

Comments
 (0)