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

This commit is contained in:
OTABI Tomoya
2025-04-28 23:53:58 +09:00
committed by GitHub
@@ -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 ];