-
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.
Merge branch 'master' into saccharis
- Loading branch information
Showing
421 changed files
with
20,146 additions
and
2,307 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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" |
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,7 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xe | ||
|
||
# use newer config.guess and config.sub that support osx arm64 | ||
cp ${RECIPE_DIR}/config.* . | ||
|
||
export C_INCLUDE_PATH=${PREFIX}/include | ||
export LIBRARY_PATH=${PREFIX}/lib | ||
./configure --prefix=${PREFIX} | ||
make | ||
make -j ${CPU_COUNT} | ||
make install |
Oops, something went wrong.