Skip to content

Commit dfc06dc

Browse files
committed
update version
1 parent 9086064 commit dfc06dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conda.recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: pandas
3-
version: {{ GIT_DESCRIBE_TAG|replace("v","") }}
3+
version: {{ environ.get('GIT_DESCRIBE_TAG','').replace('v', '', 1) }}
44

55
build:
6-
number: {{ GIT_DESCRIBE_NUMBER|int }}
6+
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
77
{% if GIT_DESCRIBE_NUMBER|int == 0 %}string: np{{ CONDA_NPY }}py{{ CONDA_PY }}_0
88
{% else %}string: np{{ CONDA_NPY }}py{{ CONDA_PY }}_{{ GIT_BUILD_STR }}{% endif %}
99

0 commit comments

Comments
 (0)