Skip to content

Commit 3112d1e

Browse files
Merge branch 'develop' into 367-display-daemonbackend-error-in-dashboard
2 parents 51d1b15 + cf2e2d0 commit 3112d1e

33 files changed

+7273
-137
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There is also a simulated version of Reachy Mini in [MuJoCo](https://mujoco.org)
1616

1717
## Assembly guide
1818

19-
Follow our step-by-step [Assembly Guide](https://www.pollen-robotics.com/wp-content/uploads/2025/10/Reachy_Mini_Assembly_BETA_v2_LOW-compresse.pdf).
19+
Follow our step-by-step [Assembly Guide](https://huggingface.co/spaces/pollen-robotics/Reachy_Mini_Assembly_Guide).
2020
Most builders finish in about 3 hours, our current speed record is 43 minutes. The guide walks you through every step with clear visuals so you can assemble Reachy Mini confidently from start to finish. Enjoy the build!
2121

2222
## Software overview
@@ -79,8 +79,14 @@ git clone https://github.com/pollen-robotics/reachy_mini
7979
pip install -e ./reachy_mini
8080
```
8181

82+
*Note that uv users can directly run the daemon with:*
83+
```bash
84+
uv run reachy-mini-daemon
85+
```
86+
8287
The same package provides both the daemon and the Python SDK.
8388

89+
8490
## Run the reachy mini daemon
8591

8692
Before being able to use the robot, you need to run the daemon that will handle the communication with the motors. This daemon can run either in simulation (MuJoCo) or on the real robot.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "reachy_mini"
7-
version = "1.1.0rc2"
7+
version = "1.1.0rc3"
88
authors = [{ name = "Pollen Robotics", email = "[email protected]" }]
99
description = ""
1010
readme = "README.md"
1111
requires-python = ">=3.10"
1212
dependencies = [
13-
"numpy>=2.2.5,<2.3.0",
14-
"scipy==1.15.3",
13+
"numpy>=2.2.5",
14+
"scipy>=1.15.3, <2.0.0",
1515
"reachy_mini_motor_controller>=1.3.0",
1616
"eclipse-zenoh>=1.4.0",
1717
"opencv-python<=5.0",
@@ -51,7 +51,7 @@ examples = ["pynput"]
5151
mujoco = ["mujoco==3.3.0"]
5252
nn_kinematics = ["onnxruntime==1.22.1"]
5353
placo_kinematics = ["placo==0.9.14"]
54-
gstreamer = ["PyGObject>=3.42.2,<=3.46.0", "gst-signalling==1.1.1"]
54+
gstreamer = ["PyGObject>=3.42.2,<=3.46.0", "gst-signalling>=1.1.1"]
5555
rerun = [
5656
"rerun-sdk>=0.23.4",
5757
# See https://github.com/rerun-io/rerun-loader-python-example-urdf/issues/12

0 commit comments

Comments
 (0)