Skip to content

Commit 44df26b

Browse files
committed
chore: added consistent __version__ and rcs deps bump
1 parent aad7a48 commit 44df26b

File tree

20 files changed

+48
-19
lines changed

20 files changed

+48
-19
lines changed

extensions/rcs_fr3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "rcs_fr3"
77
version = "0.5.2"
88
description="RCS libfranka integration"
99
dependencies = [
10-
"rcs>=0.5.0",
10+
"rcs>=0.5.2",
1111
"frankik @ git+https://github.com/juelg/frankik",
1212
]
1313
readme = "README.md"
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from rcs_fr3 import desk, envs
2-
from rcs_fr3._core import hw
2+
from rcs_fr3._core import __version__, hw
33

44
__all__ = [
55
"desk",
66
"hw",
77
"envs",
8+
"__version__",
89
]

extensions/rcs_fr3/src/rcs_fr3/creators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import gymnasium as gym
66
import numpy as np
77
import rcs.hand.tilburg_hand
8+
from frankik import FrankaKinematics
89
from rcs._core.common import Kinematics, Pose
910
from rcs.camera.hw import HardwareCameraSet
1011
from rcs.envs.base import (
@@ -24,7 +25,6 @@
2425
from rcs_fr3.utils import default_fr3_hw_gripper_cfg, default_fr3_hw_robot_cfg
2526

2627
import rcs
27-
from frankik import FrankaKinematics
2828

2929
logger = logging.getLogger(__name__)
3030
logger.setLevel(logging.INFO)

extensions/rcs_panda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "rcs_panda"
77
version = "0.5.2"
88
description="RCS libfranka integration"
99
dependencies = [
10-
"rcs>=0.5.0",
10+
"rcs>=0.5.2",
1111
]
1212
readme = "README.md"
1313
maintainers = [
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from rcs_panda import envs
2-
from rcs_panda._core import hw
2+
from rcs_panda._core import __version__, hw
33

44
__all__ = [
55
"hw",
66
"envs",
7+
"__version__",
78
]

extensions/rcs_realsense/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "rcs_realsense"
77
version = "0.5.2"
88
description="RCS realsense module"
99
dependencies = [
10-
"rcs>=0.5.0",
10+
"rcs>=0.5.2",
1111
"pyrealsense2~=2.55.1",
1212
"pupil_apriltags",
1313
"diskcache",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.5.2"

extensions/rcs_robotics_library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.5.2"
88
description="RCS robotics library integration"
99
readme = "README.md"
1010
dependencies = [
11-
"rcs>=0.5.0",
11+
"rcs>=0.5.2",
1212
]
1313
maintainers = [
1414
{ name = "Tobias Jülg", email = "[email protected]" },
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
from rcs_robotics_library._core import rl
1+
from rcs_robotics_library._core import __version__, rl
22

33
__all__ = [
44
"rl",
5+
"__version__",
56
]

extensions/rcs_so101/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "rcs_so101"
77
version = "0.5.2"
88
description="RCS SO101 module"
99
dependencies = [
10-
"rcs>=0.5.0",
10+
"rcs>=0.5.2",
1111
"lerobot==0.3.3",
1212
]
1313
readme = "README.md"

0 commit comments

Comments
 (0)