Skip to content

Commit

Permalink
restrict biopython to 1.76 for python 3 too
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed May 10, 2022
1 parent 49d5666 commit f735d11
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 @@ -14,7 +14,7 @@
if sys.version_info[:2] == (2, 7):
INSTALL_REQUIRES=['numpy>=1.10', 'biopython<=1.76', 'pyparsing', 'scipy']
else:
INSTALL_REQUIRES=['numpy>=1.10', 'biopython', 'pyparsing', 'scipy']
INSTALL_REQUIRES=['numpy>=1.10', 'biopython<=1.76', 'pyparsing', 'scipy']

if sys.version_info[0] == 3:
if sys.version_info[1] < 5:
Expand Down

0 comments on commit f735d11

Please sign in to comment.