Skip to content

Commit

Permalink
no bare except, future without version restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanssen2 committed Jul 17, 2018
1 parent 6886c66 commit fdd44eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
if on_rtd:
install_requires = []
else:
install_requires = ['numpy >= 1.7', 'future==0.13.1', 'scikit-bio',
install_requires = ['numpy >= 1.7', 'future', 'scikit-bio',
'Click']

setup(name='tax2tree',
Expand Down
2 changes: 1 addition & 1 deletion t2t/nlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def is_float(s):
try:
float(s)
return True
except:
except ValueError:
return False


Expand Down

0 comments on commit fdd44eb

Please sign in to comment.