-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] resolve tabulate error by version rollback
There is a known issue with newer versions of tabulate that result in `AttributeError: 'str' object has no attribute 'name'` (see cov-lineages/pangolin#489). To resolve this error, environment specs have been modified to specify tabulate==0.8.10.
- Loading branch information
1 parent
1a85172
commit b27c408
Showing
4 changed files
with
16 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# biopython | ||
# matplotlib | ||
# numpy >= 1.22.3 | ||
# numba >= 0.56 | ||
# pandas | ||
# seaborn | ||
# scipy | ||
# scikit-learn | ||
# snakemake == 7.0 | ||
# scikit-learn | ||
# umap-learn | ||
# hdbscan | ||
biopython | ||
matplotlib | ||
numpy >= 1.22.3 | ||
numba >= 0.56 | ||
pandas | ||
seaborn | ||
scipy | ||
scikit-learn | ||
snakemake == 7.0 | ||
scikit-learn | ||
tabulate == 0.8.10 | ||
umap-learn | ||
hdbscan |