Skip to content

Commit

Permalink
[conda] Fix meta.yaml package function name (#1603)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixdittrich92 authored May 21, 2024
1 parent 45c2df3 commit fa78a6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ package:
version: {{ version }}

source:
fn: {{ project.get('name') }}-{{ version }}.tar.gz
url: ../dist/{{ project.get('name') }}-{{ version }}.tar.gz
fn: {{ project.get('name') | replace("-", "_") }}-{{ version }}.tar.gz
url: ../dist/{{ project.get('name') | replace("-", "_") }}-{{ version }}.tar.gz

build:
script: python setup.py install --single-version-externally-managed --record=record.txt
Expand Down Expand Up @@ -49,6 +49,6 @@ about:
home: {{ urls.get('repository') }}
license: Apache-2.0
license_file: {{ project.get('license', {}).get('file') }}
summary: {{ project.get('description') | replace(":", " -")}}
summary: {{ project.get('description') | replace(":", " -") }}
doc_url: {{ urls.get('documentation') }}
dev_url: {{ urls.get('repository') }}

0 comments on commit fa78a6f

Please sign in to comment.