Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meta.yaml: upgrade to 2.0.5; adds pandoc to dep and tests they work t… #8

Merged
merged 4 commits into from
Dec 16, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "panflute" %}
{% set version = "1.12.5" %}
{% set version = "2.0.5" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 8b89507c02fde97650441d50169958b50cb13000edcc7f061390ea6fc313775c
sha256: ff6b65624442ed4a331133326ca001f4043a6552e6d344e87dc085943dc355eb

build:
noarch: python
Expand All @@ -19,18 +19,24 @@ build:

requirements:
host:
- python
- python >=3.6
- pip
run:
- python
- python >=3.6
- pyyaml
- click
- pandoc >=2.11.0.4
ickc marked this conversation as resolved.
Show resolved Hide resolved

test:
imports:
- panflute
commands:
- pip check
ickc marked this conversation as resolved.
Show resolved Hide resolved
- |
echo '# Testing' | pandoc -F panflute
- panfl --help
requires:
- pip

about:
home: https://github.com/sergiocorreia/panflute
Expand All @@ -43,4 +49,5 @@ about:

extra:
recipe-maintainers:
- ickc
- kiwi0fruit