Skip to content

Commit

Permalink
Merge pull request #326480 from GaetanLepage/numpyro
Browse files Browse the repository at this point in the history
python311Packages.numpyro: 0.15.0 -> 0.15.1
  • Loading branch information
natsukium authored Jul 12, 2024
2 parents 467af33 + 146d8a7 commit 0910a76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/numpyro/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@

buildPythonPackage rec {
pname = "numpyro";
version = "0.15.0";
version = "0.15.1";
pyproject = true;

disabled = pythonOlder "3.9";

src = fetchPypi {
inherit version pname;
hash = "sha256-4WyfR8wx4qollYSgtslEMSCB0zypJAYCJjKtWEsOYA0=";
hash = "sha256-HnX6sYRdEpbCMDXHsk1l/h60630ZwmED3SUioLA3wrU=";
};

build-system = [ setuptools ];
Expand Down Expand Up @@ -69,11 +69,11 @@ buildPythonPackage rec {
# TODO: remove when tensorflow-probability gets fixed.
disabledTestPaths = [ "test/test_distributions.py" ];

meta = with lib; {
meta = {
description = "Library for probabilistic programming with NumPy";
homepage = "https://num.pyro.ai/";
changelog = "https://github.com/pyro-ppl/numpyro/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}

0 comments on commit 0910a76

Please sign in to comment.