Skip to content

Commit

Permalink
Move to sdata['name']
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
hoxbro committed Oct 4, 2023
1 parent d129b03 commit 72cc9b8
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
@@ -1,15 +1,15 @@
{% set sdata = load_setup_py_data(setup_file="../setup.py", from_recipe_dir=True) %}

package:
name: panel
name: {{ sdata['name'] }}
version: {{ VERSION }}

source:
url: ../dist/panel-{{ VERSION }}-py3-none-any.whl
url: ../dist/{{ sdata['name'] }}-{{ VERSION }}-py3-none-any.whl

build:
noarch: python
script: {{ PYTHON }} -m pip install -vv panel-{{ VERSION }}-py3-none-any.whl
script: {{ PYTHON }} -m pip install -vv {{ sdata['name'] }}-{{ VERSION }}-py3-none-any.whl
entry_points:
{% for group,epoints in sdata.get("entry_points",{}).items() %}
{% for entry_point in epoints %}
Expand Down

0 comments on commit 72cc9b8

Please sign in to comment.