Skip to content

Commit

Permalink
fix: Pin Biopython to <=1.80
Browse files Browse the repository at this point in the history
1.81 is incompatible with BCBio.GFF which requires a module
that was removed in 1.81
Partially resolves #1151
  • Loading branch information
corneliusroemer committed Feb 17, 2023
1 parent 53fed2d commit d771c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
python_requires = '>={}'.format('.'.join(str(n) for n in py_min_version)),
install_requires = [
"bcbio-gff >=0.6.0, ==0.6.*",
"biopython >=1.67, !=1.77, !=1.78",
"biopython >=1.67, !=1.77, !=1.78, <=1.80",
"cvxopt >=1.1.9, ==1.*",
"isodate ==0.6.*",
"jsonschema >=3.0.0, ==3.*",
Expand Down

0 comments on commit d771c46

Please sign in to comment.