Skip to content

Commit

Permalink
Merge pull request #1547 from jamesmkrieger/biopython_176
Browse files Browse the repository at this point in the history
restrict biopython to 1.76 for python 3 too
  • Loading branch information
jamesmkrieger authored May 13, 2022
2 parents 243994f + f735d11 commit 9bc18a2
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 9bc18a2

Please sign in to comment.