mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python312Packages.numpyro: 0.15.1 -> 0.15.2
Changelog: https://github.com/pyro-ppl/numpyro/releases/tag/0.15.2
This commit is contained in:
parent
23324f86c5
commit
deba63aadf
1 changed files with 8 additions and 2 deletions
|
@ -3,12 +3,18 @@
|
|||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchPypi,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# dependencies
|
||||
jax,
|
||||
jaxlib,
|
||||
multipledispatch,
|
||||
numpy,
|
||||
tqdm,
|
||||
|
||||
# checks
|
||||
funsor,
|
||||
pytestCheckHook,
|
||||
# TODO: uncomment when tensorflow-probability gets fixed.
|
||||
|
@ -17,14 +23,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "numpyro";
|
||||
version = "0.15.1";
|
||||
version = "0.15.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version pname;
|
||||
hash = "sha256-HnX6sYRdEpbCMDXHsk1l/h60630ZwmED3SUioLA3wrU=";
|
||||
hash = "sha256-6G3TrDyQ5N2uuzLzzEus1czCtvg3M0wBorLo2vQZozE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
|
Loading…
Reference in a new issue