python312Packages.blackjax: 1.2.3 -> 1.2.4 (#345654)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-02 00:25:59 +02:00 committed by GitHub
commit 5850333708
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
@ -24,16 +23,14 @@
buildPythonPackage rec {
pname = "blackjax";
version = "1.2.3";
version = "1.2.4";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "blackjax-devs";
repo = "blackjax";
rev = "refs/tags/${version}";
hash = "sha256-f1piE79TLVLtIe9/DaLhXss/ifhU719nEylyl70SVJc=";
hash = "sha256-qaQBbRAKExRHr4Uhm5/Q1Ydon6ePsjG2PWbwSdR9QZM=";
};
build-system = [ setuptools-scm ];