Closed Menelau closed 5 years ago
Changing the test function, def test_label_encoder_base() to use np.array_equal instead of np.equal to be compatible with Python 3.7.2
def test_label_encoder_base()
np.array_equal
np.equal
The function np.equal is giving the following error when updated to Python 3.7.2:
TypeError: ufunc 'equal' did not contain a loop with signature matching types dtype('<U5') dtype('<U5') dtype('bool')
Changing the test function,
def test_label_encoder_base()
to usenp.array_equal
instead ofnp.equal
to be compatible with Python 3.7.2The function
np.equal
is giving the following error when updated to Python 3.7.2:TypeError: ufunc 'equal' did not contain a loop with signature matching types dtype('<U5') dtype('<U5') dtype('bool')