Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions source/isaaclab/changelog.d/peterd-lock-qpsolvers-version.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Fixed
^^^^^

* Pinned ``qpsolvers==4.11.0`` to keep Pink IK working. ``qpsolvers`` 4.12.0
dropped the ``primal_start`` kwarg, causing ``pin-pink==3.1.0`` to raise
``TypeError`` inside ``solve_ik``;
:class:`~isaaclab.controllers.pink_ik.PinkIKController` then silently
fell back to returning the current joints, making IK a no-op.
Comment on lines +4 to +8
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Other entries that add a new install requirement (e.g., antoiner-fix-from-files-windows-filelock.rst) include a Changed section alongside the Fixed section to record the added dependency. Adding one here would keep the changelog consistent.

Suggested change
* Pinned ``qpsolvers==4.11.0`` to keep Pink IK working. ``qpsolvers`` 4.12.0
dropped the ``primal_start`` kwarg, causing ``pin-pink==3.1.0`` to raise
``TypeError`` inside ``solve_ik``;
:class:`~isaaclab.controllers.pink_ik.PinkIKController` then silently
fell back to returning the current joints, making IK a no-op.
* Pinned ``qpsolvers==4.11.0`` to keep Pink IK working. ``qpsolvers`` 4.12.0
dropped the ``primal_start`` kwarg, causing ``pin-pink==3.1.0`` to raise
``TypeError`` inside ``solve_ik``;
:class:`~isaaclab.controllers.pink_ik.PinkIKController` then silently
fell back to returning the current joints, making IK a no-op.
Changed
^^^^^^^
* Added ``qpsolvers==4.11.0`` to ``isaaclab`` install requirements (Linux only).

1 change: 1 addition & 0 deletions source/isaaclab/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
f"pin ; platform_system == 'Linux' and ({SUPPORTED_ARCHS_ARM})",
f"pin-pink==3.1.0 ; platform_system == 'Linux' and ({SUPPORTED_ARCHS_ARM})",
f"daqp==0.7.2 ; platform_system == 'Linux' and ({SUPPORTED_ARCHS_ARM})",
f"qpsolvers==4.11.0 ; platform_system == 'Linux' and ({SUPPORTED_ARCHS_ARM})",
]
# Adds OpenUSD dependencies based on architecture for Kit less mode.
INSTALL_REQUIRES += [
Expand Down
Loading