nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.numpyro: 0.17.0 -> 0.18.0

Diff: https://github.com/pyro-ppl/numpyro/compare/refs/tags/0.17.0...0.18.0

Changelog: https://github.com/pyro-ppl/numpyro/releases/tag/0.18.0

+10 -9
+10 -9
pkgs/development/python-modules/numpyro/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "numpyro"; 32 - version = "0.17.0"; 32 + version = "0.18.0"; 33 33 pyproject = true; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "pyro-ppl"; 37 37 repo = "numpyro"; 38 38 tag = version; 39 - hash = "sha256-S5A5wBb2ZMxpLvP/EYahdg2BqgzKGvnzvZOII76O/+w="; 39 + hash = "sha256-0X/ta2yfzjf3JnZYdUAzQmXvbsDpwFCJe/bArMSWQgU="; 40 40 }; 41 41 42 42 build-system = [ setuptools ]; ··· 78 78 79 79 disabledTests = 80 80 [ 81 + # AssertionError, assert GLOBAL["count"] == 4 (assert 5 == 4) 82 + "test_mcmc_parallel_chain" 83 + 81 84 # AssertionError due to tolerance issues 82 85 "test_bijective_transforms" 83 86 "test_cpu" ··· 92 89 # E Emitted warnings: []. 93 90 "test_laplace_approximation_warning" 94 91 95 - # Tests want to download data 96 - "data_load" 97 - "test_jsb_chorales" 98 - 99 92 # ValueError: compiling computation that requires 2 logical devices, but only 1 XLA devices are available (num_replicas=2) 100 93 "test_chain" 101 - 102 - # test_biject_to[CorrMatrix()-(15,)] - assert Array(False, dtype=bool) 103 - "test_biject_to" 104 94 ] 105 95 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 106 96 # AssertionError: Not equal to tolerance rtol=0.06, atol=0 107 97 "test_functional_map" 108 98 ]; 99 + 100 + disabledTestPaths = [ 101 + # Require internet access 102 + "test/test_example_utils.py" 103 + ]; 109 104 110 105 meta = { 111 106 description = "Library for probabilistic programming with NumPy";