Skip to content
Open
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
14 changes: 7 additions & 7 deletions recipes/csubst/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{% set name = "csubst" %}
{% set version = "1.8.0" %}
{% set version = "1.11.10" %}

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

source:
url: https://github.com/kfuku52/csubst/archive/refs/tags/v{{ version }}.tar.gz
sha256: eb568e33023db01e0516d373298f0b78d401be70109af5c532c2f6e588fa5304
sha256: 27a463ab0ab55e61e0c5957619660e5463cbad8e01a704a04115f72ef8734e76

build:
number: 0
skip: true # [aarch64 or arm64]
skip: true # [py < 310 or py >= 314 or aarch64 or arm64]
script:
- export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib"
- export CPPFLAGS="${CPPFLAGS} -I${PREFIX}/include -I$(python -c 'import numpy; print(numpy.get_include())')"
Expand All @@ -27,13 +27,13 @@ requirements:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python >=3.10,<3.14
- python
- pip
- cython
- setuptools
- numpy
run:
- python >=3.10,<3.14
- python
- ete4 >=4.3.0
- numpy
- scipy
Expand All @@ -53,8 +53,8 @@ test:

about:
home: "https://github.com/kfuku52/csubst"
license: "BSD-3-Clause"
license_family: BSD
license: "MIT"
license_family: MIT
summary: "Tool for analyzing combinatorial codon substitutions in DNA sequences."
license_file: LICENSE
dev_url: "https://github.com/kfuku52/csubst"
Expand Down
Loading