From d083724a2c575c4f2fb41b07965315910b6cd171 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 7 May 2024 09:48:32 +0200 Subject: [PATCH] python311Packages.tensordict: 0.3.1 -> 0.4.0 Diff: https://github.com/pytorch/tensordict/compare/refs/tags/v0.3.1...v0.4.0 Changelog: https://github.com/pytorch/tensordict/releases/tag/v0.4.0 --- .../development/python-modules/tensordict/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/tensordict/default.nix b/pkgs/development/python-modules/tensordict/default.nix index 6c64ca00c5ee..6dceda423658 100644 --- a/pkgs/development/python-modules/tensordict/default.nix +++ b/pkgs/development/python-modules/tensordict/default.nix @@ -11,11 +11,12 @@ , h5py , pytestCheckHook , stdenv +, pythonAtLeast }: buildPythonPackage rec { pname = "tensordict"; - version = "0.3.1"; + version = "0.4.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,17 +25,17 @@ buildPythonPackage rec { owner = "pytorch"; repo = "tensordict"; rev = "refs/tags/v${version}"; - hash = "sha256-eCx1r7goqOdGX/0mSGCiLhdGQTh4Swa5aFiLSsL56p0="; + hash = "sha256-wKEzNaaazGEkoElzp93RIlq/r5uRUdM7UyDy/DygIEc="; }; - nativeBuildInputs = [ + build-system = [ setuptools torch wheel which ]; - propagatedBuildInputs = [ + dependencies = [ cloudpickle numpy torch @@ -72,5 +73,7 @@ buildPythonPackage rec { homepage = "https://github.com/pytorch/tensordict"; license = licenses.mit; maintainers = with maintainers; [ GaetanLepage ]; + # No python 3.12 support yet: https://github.com/pytorch/rl/issues/2035 + broken = pythonAtLeast "3.12"; }; }