Skip to content

Commit dde32ad

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

File tree

19 files changed

+48
-17
lines changed

19 files changed

+48
-17
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 hw, __version__
33

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

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 hw, __version__
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 = "tobias.juelg@utn.de" },
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 rl, __version__
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"
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from rcs_so101._core.so101_ik import SO101IK
22

3-
from .creators import RCSSO101EnvCreator
4-
from .hw import SO101, SO101Config, SO101Gripper
3+
from rcs_so101._core import SO101IK, __version__
54

6-
__all__ = ["SO101IK", "RCSSO101EnvCreator", "SO101", "SO101Config", "SO101Gripper"]
5+
from rcs_so101.creators import RCSSO101EnvCreator
6+
from rcs_so101.hw import SO101, SO101Config, SO101Gripper
7+
8+
__all__ = ["SO101IK", "RCSSO101EnvCreator", "SO101", "SO101Config", "SO101Gripper", "__version__"]

0 commit comments

Comments
 (0)