Skip to content

Commit

Permalink
Fix to numpy version fix pyne#775
Browse files Browse the repository at this point in the history
  • Loading branch information
ohnemax committed Nov 19, 2015
1 parent 04d61c8 commit 96386f3
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 @@ -116,7 +116,7 @@ def cleanpypath(path):


def assert_np_version():
low = (1, 8, 0)
low = (1, 8)
v = np.version.short_version
cur = tuple(map(int, v.split('.')[:2]))
if cur < low:
Expand Down

0 comments on commit 96386f3

Please sign in to comment.