Skip to content

Commit 612985e

Browse files
committed
Add version constraints for python and sqlite
It's unlikely that Conda will resolve lower versions on its own, but it makes sense to sync run time dependencies and their pins with whatever is defined in the recipe we maintain.
1 parent 1a164ff commit 612985e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dev_env.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ channels:
88

99
# While Augur is available as a Conda package, it is not listed here.
1010
# Augur itself and its Python dependencies should be installed via pip.
11+
#
12+
# Version constraints should mirror the Biopython recipe.
13+
# <https://github.com/bioconda/bioconda-recipes/blob/-/recipes/augur/meta.yaml>
1114
dependencies:
12-
- conda-forge::python
15+
- conda-forge::python >=3.10
1316

1417
# Augur's non-Python dependencies
1518
- mafft
@@ -18,7 +21,7 @@ dependencies:
1821
- iqtree
1922
- vcftools
2023
- seqkit
21-
- conda-forge::sqlite
24+
- conda-forge::sqlite >=3.39,<4
2225

2326
# Tools used in tests
2427
- conda-forge::jq

0 commit comments

Comments
 (0)