From e48b364f22b6f42e1291b83a93b29679788f41cd Mon Sep 17 00:00:00 2001 From: Benjamin Bolte Date: Fri, 1 Nov 2024 11:42:25 -0700 Subject: [PATCH] update version --- actuator/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/actuator/__init__.py b/actuator/__init__.py index 2b5a6f7..cbe9fd0 100644 --- a/actuator/__init__.py +++ b/actuator/__init__.py @@ -1,7 +1,5 @@ """Defines the top-level API for the actuator package.""" -__version__ = "0.0.25" - from .bindings import ( PyRobstrideMotorConfig as RobstrideMotorConfig, PyRobstrideMotorControlParams as RobstrideMotorControlParams, @@ -9,4 +7,7 @@ PyRobstrideMotors as RobstrideMotors, PyRobstrideMotorsSupervisor as RobstrideMotorsSupervisor, PyRobstrideMotorType as RobstrideMotorType, + get_version, ) + +__version__ = get_version()