Gaetan Lepage 2025-07-14 15:06:33 +02:00
parent b784f21dca
commit 26f0921b43

View File

@ -19,6 +19,7 @@
numpy,
orjson,
packaging,
pyvers,
torch,
# tests
@ -28,14 +29,14 @@
buildPythonPackage rec {
pname = "tensordict";
version = "0.9.0";
version = "0.9.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pytorch";
repo = "tensordict";
tag = "v${version}";
hash = "sha256-actBFzWb2JBPsLhRZiD6zRpk7eyX2OHUPMU9JpJ90Wc=";
hash = "sha256-OdS9dw/BtSLZuY857O2njlFOMQj5IJ6v9c2aRP+H1Hc=";
};
build-system = [
@ -56,6 +57,7 @@ buildPythonPackage rec {
numpy
orjson
packaging
pyvers
torch
];