Skip to content

Commit e1782d8

Browse files
Merge pull request #365 from pollen-robotics/363-support-of-uv
363 support of uv
2 parents dacc0ba + bdd8523 commit e1782d8

File tree

3 files changed

+3700
-3
lines changed

3 files changed

+3700
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ 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.2.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)