-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update baltic to 0.3.0 * add run_exports * add run_exports --------- Co-authored-by: mencian <joshua.zhuang@yahoo.com>
- Loading branch information
1 parent
3cdc501
commit 762d2e3
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,38 @@ | ||
{% set name = "baltic" %} | ||
{% set version = "0.2.2" %} | ||
{% set version = "0.3.0" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" | ||
sha256: 095045aeb0f86f7668df5d7f163ab9fec30e59a564fc77c06b5cb756027a1e79 | ||
sha256: d7fd92d0a40840f15826416e5aaaa3b9e40db07df99f9d4add2eeaf683ae385d | ||
|
||
build: | ||
number: 0 | ||
script: python -m pip install --no-deps --ignore-installed . | ||
script: {{ PYTHON }} -m pip install --no-deps --no-build-isolation --no-cache-dir . -vvv | ||
noarch: python | ||
run_exports: | ||
- {{ pin_subpackage('baltic', max_pin="x.x") }} | ||
|
||
requirements: | ||
host: | ||
- pip | ||
- python | ||
- python >=3.5 | ||
run: | ||
- matplotlib-base >=2.0.0 | ||
- numpy >=1.16 | ||
- python | ||
- python >=3.5 | ||
|
||
test: | ||
imports: | ||
- baltic | ||
|
||
about: | ||
home: "https://github.com/evogytis/baltic" | ||
license: GPL-3.0 | ||
license: GPL-3.0-or-later | ||
license_family: GPL3 | ||
license_file: LICENSE | ||
summary: "Lightweight package for analyzing, manipulating and visualizing annotated phylogenetic trees" | ||
summary: "Lightweight package for analyzing, manipulating and visualizing annotated phylogenetic trees." | ||
dev_url: "https://github.com/evogytis/baltic" |