Skip to content

Commit 96036a2

Browse files
committed
successfully build with pixi but still need to clean up some details based on the template
1 parent 5e524e0 commit 96036a2

6 files changed

Lines changed: 202 additions & 1231 deletions

File tree

.github/workflows/package.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
# run: |
2828
# pixi run build-pypi
2929
- name: build conda package
30-
run: |
31-
pixi run build-conda
30+
run: pixi run build-conda
3231
- name: upload conda package to anaconda
3332
if: startsWith(github.ref, 'refs/tags/v')
3433
env:

conda.recipe/meta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# load information from setup.cfg/setup.py
2-
{% set data = load_setup_py_data() %}
3-
{% set license = data.get('license') %}
4-
{% set description = data.get('description') %}
5-
{% set url = data.get('url') %}
2+
{% set data = {} %}
3+
{% set license = data.get('license', '') %}
4+
{% set description = data.get('description', '') %}
5+
{% set url = data.get('url','') %}
66
# this will reproduce the version from tags to match versioningit
77
{% set version_tag = environ.get('GIT_DESCRIBE_TAG', '0.0.0') %}
88
{% set version_number = environ.get('GIT_DESCRIBE_NUMBER', '0') | string %}

0 commit comments

Comments
 (0)