Unverified Commit a84a756a authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.skrl: 1.4.2 -> 1.4.3 (#395738)

parents 5e718c84 4c4e9dee
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -16,15 +16,15 @@

buildPythonPackage rec {
  pname = "skrl";
  version = "1.4.2";
  version = "1.4.3";
  pyproject = true;
  disabled = pythonOlder "3.6";
  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "Toni-SM";
    repo = pname;
    tag = version;
    hash = "sha256-ONCRZ5Gpvg61dhi7GVxtvXIJiyZY9Fmk2qexMXVuj3A=";
    hash = "sha256-5lkoYAmMIWqK3+E3WxXMWS9zal2DhZkfl30EkrHKpdI=";
  };

  nativeBuildInputs = [ setuptools ];
@@ -63,6 +63,7 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Reinforcement learning library using PyTorch focusing on readability and simplicity";
    changelog = "https://github.com/Toni-SM/skrl/releases/tag/${version}";
    homepage = "https://skrl.readthedocs.io";
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];