Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/isaaclab/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/
version = "4.6.11"
version = "4.6.12"

# Description
title = "Isaac Lab framework for Robot Learning"
Expand Down
13 changes: 13 additions & 0 deletions source/isaaclab/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
---------

4.6.12 (2026-04-23)
~~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Fixed CI failures in Theia-based observation tests where ``from transformers import AutoModel``
raised ``ValueError: Unable to compare versions for packaging>=20.0: need=20.0 found=None`` when
Isaac Sim's bundled ``packaging`` install was missing ``dist-info`` metadata. Pinned
``packaging>=20.0`` in ``source/isaaclab/setup.py`` so pip reinstalls the package with proper
metadata during setup.


4.6.11 (2026-04-22)
~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 3 additions & 1 deletion source/isaaclab/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
"debugpy>=1.8.20",
"flatdict>=4.1.0",
"flaky",
"packaging",
# Floor matches transformers' runtime check (require_version("packaging>=20.0")) and forces
# pip to reinstall when Isaac Sim's site-packages ship a metadata-less copy.
"packaging>=20.0",
"psutil",
# Required by pydantic-core/imgui_bundle on Python 3.12 (Sentinel symbol).
"typing_extensions>=4.14.0",
Expand Down
Loading