ocamlPackages.owl: 0.7.1 -> 0.7.2

- also enable tests (except on OSX) due to upstream fixes
This commit is contained in:
Ben Darwin 2019-12-06 19:19:05 -05:00
parent 88f24e842b
commit bfe5d1cc96
2 changed files with 3 additions and 3 deletions

View File

@ -2,13 +2,13 @@
buildDunePackage rec {
pname = "owl-base";
version = "0.7.1";
version = "0.7.2";
src = fetchFromGitHub {
owner = "owlbarn";
repo = "owl";
rev = version;
sha256 = "1v4jfn3w18zq188f9gskx9ffja3xx59j2mgrw6azp8lsbqixg5xk";
sha256 = "1a2lbhywrb3bmm4k48wwbp6iszpd3aj1f23v10i78cbqm5slk6dj";
};
propagatedBuildInputs = [ stdlib-shims ];

View File

@ -10,5 +10,5 @@ buildDunePackage rec {
checkInputs = [ alcotest ];
propagatedBuildInputs = [ eigen stdio stdlib-shims openblasCompat owl-base ];
# tests not enabled for now due to owlbarn/owl/issues/460
doCheck = !stdenv.isDarwin; # https://github.com/owlbarn/owl/issues/462
}