From b0498fc4dda2af5332fffea90fef713403a156af Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 26 Oct 2025 22:31:04 -0700 Subject: [PATCH] OpenEnv patches --- unsloth/__init__.py | 2 ++ unsloth/models/_utils.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/unsloth/__init__.py b/unsloth/__init__.py index 6c4ccb1462..af3d6dee9e 100644 --- a/unsloth/__init__.py +++ b/unsloth/__init__.py @@ -217,6 +217,8 @@ from unsloth_zoo.rl_environments import ( create_locked_down_function, execute_with_time_limit, Benchmarker, + is_port_open, + launch_openenv, ) # Patch TRL trainers for backwards compatibility diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index 7254268300..deaaec26ae 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2025.10.9" +__version__ = "2025.10.10" __all__ = [ "SUPPORTS_BFLOAT16",