pythonPackages.scikitlearn: fix for python2

test_standard_scaler_numerical_stability test fails on all i686 platforms
This commit is contained in:
Rok Garbas 2015-09-02 10:34:29 +02:00
parent 9da76d7d11
commit 25a29e6671

View file

@ -12672,7 +12672,7 @@ let
})
];
postPatch = optionalString (stdenv.isi686 && isPy3k) ''
postPatch = optionalString stdenv.isi686 ''
sed -i -e "s|test_standard_scaler_numerical_stability|_skip_test_standard_scaler_numerical_stability|g" sklearn/preprocessing/tests/test_data.py
'';