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

Add recipe for SuchTree #52959

Merged
merged 8 commits into from
Dec 24, 2024
Merged
Changes from 3 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
60 changes: 60 additions & 0 deletions recipes/suchtree/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{% set name = "SuchTree" %}
{% set version = "1.2" %}

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

source:
url: "https://files.pythonhosted.org/packages/db/f0/75245602f31f80d18a7ffd4b4739e2eb442e46801c1c0ea430c0f002f2e7/suchtree-1.2.tar.gz"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you please use the other pypi URL and include the version jinja variable?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm once again regretting including capital letters.

sha256: c45af37beb1a210097151b807ccde9966c72a3cfa99ecfe80251bcc0a14f1f60

build:
number: 0
dependencies:
- cython
- scipy
- numpy >=2.0
bgruening marked this conversation as resolved.
Show resolved Hide resolved
run_exports:
- {{ pin_subpackage( "suchtree", max_pin="x.x" ) }}
script: "{{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation"

requirements:
build:
- {{ compiler('c') }}
- cython
- scipy
- numpy >=2.0
bgruening marked this conversation as resolved.
Show resolved Hide resolved
host:
- cython
- python
- pip
- setuptools
- scipy
- numpy >=2.0
run:
- python
- dendropy
- pandas >=2.1
- numpy >=2.0
- scipy

test:
imports:
- SuchTree

about:
home: The package home page
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please update this one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh. Ah, whoops!

license: BSD
license_family: BSD
license_file: LICENSE
summary: "A python library for doing fast, thread-safe computations on phylogenetic trees"
doc_url: https://github.com/ryneches/SuchTree/blob/master/README.md
dev_url: https://github.com/ryneches/SuchTree/

extra:
identifiers:
- biotools:suchtree
- doi:10.21105/joss.00678
recipe-maintainers:
- ryneches
Loading