lol

python3Packages.tensorly: 0.8.0 -> 0.8.1 re-enabled tests

authored by

Kirill Radzikhovskyy and committed by
Yt
850cfffa 10eca431

+3 -5
+3 -5
pkgs/development/python-modules/tensorly/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "tensorly"; 13 - version = "0.8.0"; 13 + version = "0.8.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = pname; 20 20 repo = pname; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-6iZvUgsoYf8fDGEuAODgfr4jCkiJwaJXlQUAsaOF9JU="; 22 + hash = "sha256-hwpdExW/ESOavFkL3old1Efo5WC+PYmcgJp5/oLelaA="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ ··· 54 54 ]; 55 55 56 56 disabledTests = [ 57 - # tries to download data: 58 - "test_kinetic" 57 + # this can fail on hydra and other peoples machines, check with others before re-enabling 59 58 # AssertionError: Partial_SVD took too long, maybe full_matrices set wrongly 60 59 "test_svd_time" 61 60 ]; ··· 65 64 homepage = "https://tensorly.org/"; 66 65 license = licenses.bsd3; 67 66 maintainers = with maintainers; [ bcdarwin ]; 68 - broken = stdenv.isLinux && stdenv.isAarch64; # test failures: test_TTOI and test_validate_tucker_rank 69 67 }; 70 68 }