python312Packages.tensordict: 0.8.1 -> 0.8.2 (#404487)

This commit is contained in:
Gaétan Lepage 2025-05-06 07:59:30 +02:00 committed by GitHub
commit 5a837cb866
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,7 @@
# nativeBuildInputs # nativeBuildInputs
cmake, cmake,
ninja,
# dependencies # dependencies
cloudpickle, cloudpickle,
@ -27,14 +28,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "tensordict"; pname = "tensordict";
version = "0.8.1"; version = "0.8.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pytorch"; owner = "pytorch";
repo = "tensordict"; repo = "tensordict";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-yEwuCsIKNHQf8iCSB38R8mJXvdOi0+MeNk9M9+jWfxU="; hash = "sha256-Qk+pVSwKAIOz6EczGjf4gsOsxAno/vHCgO1EQZDNTsk=";
}; };
build-system = [ build-system = [
@ -45,6 +46,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
ninja
]; ];
dontUseCmakeConfigure = true; dontUseCmakeConfigure = true;