- modified the makefile file (contribution from @Paul Munsch on bitbucket)
- fixed an error from using the latest numpy version regarding missing Inf attribute (now it is inf, lower case)
This commit is contained in:
@@ -26,7 +26,10 @@ from copy import deepcopy
|
||||
import re
|
||||
|
||||
import numpy as np
|
||||
from numpy import Inf
|
||||
try:
|
||||
from numpy import Inf
|
||||
except ImportError:
|
||||
from numpy import inf as Inf
|
||||
|
||||
from datetime import datetime
|
||||
import simplejson as json
|
||||
|
||||
Reference in New Issue
Block a user