Skip to content

Commit

Permalink
Update conda recipe to be more like conda-forge feedstock
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Jan 17, 2025
1 parent f19232d commit c1c9276
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% set name = "zppy" %}
{% set version = "3.0.0rc1" %}
{% set python_min = "3.9" %}

package:
name: {{ name|lower }}
Expand All @@ -11,24 +12,24 @@ source:

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vv
noarch: python
entry_points:
- zppy = zppy.__main__:main

requirements:
host:
- python >=3.9
- python {{ python_min }}
- pip
- setuptools
run:
- python >=3.9
- python >={{ python_min }}
- configobj >=5.0.0,<6.0.0
- jinja2 >=2.0.0
- mache >=1.3.2
- mpas_tools >=0.15.0

test:
requires:
- python {{ python_min }}
- pip
imports:
- zppy
Expand Down

0 comments on commit c1c9276

Please sign in to comment.