Unverified Commit 19131b3e authored by a-n-n-a-l-e-e's avatar a-n-n-a-l-e-e Committed by GitHub
Browse files

Merge pull request #286818 from GaetanLepage/mujoco

mujoco: 3.1.1 -> 3.1.2
parents 3676a58f 9c8e2ca8
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ let

in stdenv.mkDerivation rec {
  pname = "mujoco";
  version = "3.1.1";
  version = "3.1.2";

  # Bumping version? Make sure to look though the MuJoCo's commit
  # history for bumped dependency pins!
@@ -137,7 +137,7 @@ in stdenv.mkDerivation rec {
    owner = "google-deepmind";
    repo = "mujoco";
    rev = "refs/tags/${version}";
    hash = "sha256-+2nt7G8j6Pi60cfMBPYWPGwD8wpxDOSylenm0oCitzM=";
    hash = "sha256-Zbz6qq2Sjhcrf8QAGFlYkSZ8mA/wQaP81gRzMj3xh+g=";
  };

  patches = [ ./mujoco-system-deps-dont-fetch.patch ];
@@ -183,5 +183,6 @@ in stdenv.mkDerivation rec {
    changelog = "https://github.com/google-deepmind/mujoco/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ samuela tmplt ];
    broken = stdenv.isDarwin;
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage rec {
  pname = "mujoco";
  version = "3.1.1";
  version = "3.1.2";

  pyproject = true;

@@ -27,7 +27,7 @@ buildPythonPackage rec {
  # in the project's CI.
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-ESEnPeL79O0wnllEo9s50B84WyINIOeMRg7E78BpRbM=";
    hash = "sha256-U1MLwakZA/P9Sx6ZgYzDj72ZEXANspssn8g58jv6y7g=";
  };

  nativeBuildInputs = [ cmake setuptools ];