Remove this merge as numpy shouldn't be a dependency

This commit is contained in:
Ryan McGrath 2020-04-02 23:02:01 -07:00
parent 58587b5e07
commit ea2979c75f
No known key found for this signature in database
GPG key ID: 811674B62B666830

View file

@ -9,7 +9,6 @@ Python 3 compatibility.
""" """
import sys import sys
import numpy as np
_ver = sys.version_info _ver = sys.version_info
@ -30,7 +29,7 @@ if is_py2:
str = unicode str = unicode
basestring = basestring basestring = basestring
numeric_types = (int, long, float, np.int64, np.float64) numeric_types = (int, long, float)
elif is_py3: elif is_py3:
@ -38,4 +37,4 @@ elif is_py3:
str = str str = str
basestring = (str, bytes) basestring = (str, bytes)
numeric_types = (int, float, np.int64, np.float64) numeric_types = (int, float)