Skip to content
New issue

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

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

Already on GitHub? # to your account

Update dendropy to 5.0.2 #53545

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
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: 8 additions & 7 deletions recipes/dendropy/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{% set name = "dendropy" %}
{% set version = "5.0.1" %}
{% set sha256 = "f2815e7649a6fe2924ff3fdf00a660c948dc6f3316e303b8b022f74cc75ca42e" %}
{% set version = "5.0.2" %}
{% set sha256 = "59cdf12cf6c745c3c985a6837285ec38c8def9c4035b04485e64779b72935242" %}

package:
name: {{ name }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/DendroPy-{{ version }}.tar.gz
url: https://github.com/jeetsukumaran/DendroPy/archive/refs/tags/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
script: {{ PYTHON }} -m pip install . --use-pep517 --no-deps --no-build-isolation --no-cache-dir -vvv
entry_points:
- sumtrees=dendropy.application.sumtrees:main
- sumlabels=dendropy.application.sumlabels:main_cli
Expand All @@ -25,11 +25,12 @@ build:

requirements:
host:
- python >=3.7
- python >=3.6
- pip
- setuptools
- pytest-runner
run:
- python >=3.7
- python >=3.6

test:
imports:
Expand All @@ -52,7 +53,7 @@ about:
license_family: BSD
license_file: LICENSE.rst
dev_url: "https://github.com/jeetsukumaran/DendroPy"
doc_url: "https://dendropy.org/"
doc_url: "https://dendropy.org"

extra:
identifiers:
Expand Down
Loading