Skip to content

Removes protobuf upper version pin #2726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 27, 2025
Merged
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
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Guidelines for modifications:
* Jinqi Wei
* Johnson Sun
* Kaixi Bao
* Kris Wilson
* Kourosh Darvish
* Kousheek Chakraborty
* Lionel Gulich
Expand Down
2 changes: 1 addition & 1 deletion source/isaaclab_rl/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 = "0.1.5"
version = "0.1.6"

# Description
title = "Isaac Lab RL"
Expand Down
10 changes: 9 additions & 1 deletion source/isaaclab_rl/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
---------

0.1.6 (2025-06-26)
~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Relaxed upper range pin for protobuf python dependency for more permissive installation.


0.1.5 (2025-04-11)
~~~~~~~~~~~~~~~~~~

Expand All @@ -9,7 +18,6 @@ Changed
* Optimized Stable-Baselines3 wrapper ``Sb3VecEnvWrapper`` (now 4x faster) by using Numpy buffers and only logging episode and truncation information by default.
* Upgraded minimum SB3 version to 2.6.0 and added optional dependencies for progress bar


0.1.4 (2025-04-10)
~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 1 addition & 3 deletions source/isaaclab_rl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
"numpy",
"torch==2.5.1",
"torchvision>=0.14.1", # ensure compatibility with torch 1.13.1
# 5.26.0 introduced a breaking change, so we restricted it for now.
# See issue https://github.com/tensorflow/tensorboard/issues/6808 for details.
"protobuf>=3.20.2, < 5.0.0",
"protobuf>=3.20.2,!=5.26.0",
# configuration management
"hydra-core",
# data collection
Expand Down
2 changes: 1 addition & 1 deletion source/isaaclab_tasks/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 = "0.10.35"
version = "0.10.36"

# Description
title = "Isaac Lab Environments"
Expand Down
9 changes: 9 additions & 0 deletions source/isaaclab_tasks/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
---------

0.10.36 (2025-06-26)
~~~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Relaxed upper range pin for protobuf python dependency for more permissive installation.


0.10.35 (2025-05-22)
~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 1 addition & 3 deletions source/isaaclab_tasks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
"numpy",
"torch==2.5.1",
"torchvision>=0.14.1", # ensure compatibility with torch 1.13.1
# 5.26.0 introduced a breaking change, so we restricted it for now.
# See issue https://github.com/tensorflow/tensorboard/issues/6808 for details.
"protobuf>=3.20.2, < 5.0.0",
"protobuf>=3.20.2,!=5.26.0",
# basic logger
"tensorboard",
# automate
Expand Down