Skip to content

Commit

Permalink
Merge branch 'qa'
Browse files Browse the repository at this point in the history
  • Loading branch information
KedoKudo committed Feb 1, 2024
2 parents 4f4af7c + f100fef commit ddfc50e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
{% set url = project_url.get('homepage') %}
# this will get the version set by environment variable
{% set version = environ.get('VERSION') %}
{% set version_number = environ.get('GIT_DESCRIBE_NUMBER', '0') | string %}

{% set version_number = version.split('+')[0] %}
{% set build_number = version.split("d")[1] if "d" in version else 0 %}

package:
name: neunorm
Expand All @@ -19,7 +19,7 @@ source:

build:
noarch: python
number: {{ version_number }}
number: {{ build_number }}
string: py{{py}}
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv

Expand Down

0 comments on commit ddfc50e

Please sign in to comment.