Skip to content

Commit f1f19b0

Browse files
committed
Fix dependency problems where python 2 might not be supported anymore
1 parent c21349b commit f1f19b0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

requirements.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
argparse>=1.2.1
2-
bcbio-gff>=0.4
3-
biopython>=1.63
2+
bcbio-gff>=0.4,<=0.6.4; python_version < '3.0'
3+
bcbio-gff>=0.4; python_version >= '3.0'
4+
biopython>=1.63,<=1.72; python_version < '3.0'
5+
biopython>=1.63; python_version >= '3.0'
46
nose>=1.3.0
57
numpy>=1.8.0
68
pandas>=0.13.0

0 commit comments

Comments
 (0)