Commit aa82fd94 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.torchrl: 0.6.0 -> 0.7.0; mark as broken

parent db5ba327
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -48,14 +48,14 @@

buildPythonPackage rec {
  pname = "torchrl";
  version = "0.6.0";
  version = "0.7.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pytorch";
    repo = "rl";
    tag = "v${version}";
    hash = "sha256-2jxvxhhKZQVy1aU0G9PE8nPlg8yp+/+EUACkLNLRpMQ=";
    hash = "sha256-SMVm1XfHHqSkWTDVSqqO3kIxMBgV9A+XrEpJ56AyaBE=";
  };

  build-system = [
@@ -186,5 +186,8 @@ buildPythonPackage rec {
    changelog = "https://github.com/pytorch/rl/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
    # torhcrl is not compatible with our current version of gymnasium (>=1.0)
    # https://github.com/pytorch/rl/pull/2473
    broken = true;
  };
}