Skip to content

Commit 75824e8

Browse files
authored
Updates gymnasium to v1.2.0 (#2852)
# Description Updates gymnasium to 1.2.0, which includes a fix for memory leak when recording videos during training with `--video`. Fixes #1996 ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (fix or feature that would cause existing functionality to not work as expected) - This change requires a documentation update ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
1 parent 8d589fc commit 75824e8

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

source/isaaclab/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Note: Semantic Versioning is used: https://semver.org/
4-
version = "0.40.11"
4+
version = "0.40.12"
55

66
# Description
77
title = "Isaac Lab framework for Robot Learning"

source/isaaclab/docs/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
---------
33

4+
0.40.12 (2025-07-03)
5+
~~~~~~~~~~~~~~~~~~~~
6+
7+
Changed
8+
^^^^^^^
9+
10+
* Updated gymnasium to v1.2.0. This update includes fixes for a memory leak that appears when recording
11+
videos with the ``--video`` flag.
12+
13+
414
0.40.11 (2025-06-27)
515
~~~~~~~~~~~~~~~~~~~~
616

source/isaaclab/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# devices
2828
"hidapi==0.14.0.post2",
2929
# reinforcement learning
30-
"gymnasium>=1.0",
30+
"gymnasium==1.2.0",
3131
# procedural-generation
3232
"trimesh",
3333
"pyglet<2",

0 commit comments

Comments
 (0)