diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_.yaml index 5ee9017..e8cae06 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_.yaml @@ -6,9 +6,3 @@ channel_targets: - conda-forge main docker_image: - quay.io/condaforge/linux-anvil-comp7 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.6.* *_cpython diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 69eef5c..41bbd68 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @kiwi0fruit \ No newline at end of file +* @ickc @kiwi0fruit \ No newline at end of file diff --git a/README.md b/README.md index 8d7b80f..e8001eb 100644 --- a/README.md +++ b/README.md @@ -118,5 +118,6 @@ In order to produce a uniquely identifiable distribution: Feedstock Maintainers ===================== +* [@ickc](https://github.com/ickc/) * [@kiwi0fruit](https://github.com/kiwi0fruit/) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 2dc9b1d..0fc2525 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,6 @@ {% set name = "panflute" %} -{% set version = "2.0.4" %} +{% set version = "2.0.5" %} +{% set pandoc_minimum_version = "2.11.0.4" %} package: name: {{ name|lower }} @@ -7,7 +8,7 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz - sha256: 599fd83bf3edd692664be74076da9fd0a91823f985f59cd9e71f02ebf4189808 + sha256: ff6b65624442ed4a331133326ca001f4043a6552e6d344e87dc085943dc355eb build: noarch: python @@ -19,18 +20,26 @@ build: requirements: host: - - python + - python >=3.6 - pip run: - - python + - python >=3.6 - pyyaml - click + run_constrained: + - pandoc >={{ pandoc_minimum_version }} test: imports: - panflute commands: + - pip check + - | + echo '# Testing' | pandoc -F panflute - panfl --help + requires: + - pip + - pandoc >={{ pandoc_minimum_version }} about: home: https://github.com/sergiocorreia/panflute @@ -43,4 +52,5 @@ about: extra: recipe-maintainers: + - ickc - kiwi0fruit