robopark 3.3.3 → 3.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,25 @@
1
- fastapi==0.115.0
2
- uvicorn[standard]==0.32.0
3
- aiosqlite==0.20.0
4
- httpx==0.27.2
5
- pydantic==2.9.2
6
- python-multipart==0.0.12
7
- livekit-api>=0.10
8
- livekit>=0.18
9
- opencv-python>=4.8
10
- pyaudio>=0.2
11
- picamera2>=0.3; platform_machine == 'aarch64' or platform_machine == 'arm64'
12
- PyJWT==2.9.0
1
+ # Python deps for the SCHEDULER SERVER only. `robopark serve` installs this on
2
+ # every host, so it must contain nothing that needs a camera, a microphone, or a
3
+ # compiler.
4
+ #
5
+ # Lower bounds, not pins. Exact pins were pinning us to versions whose native
6
+ # wheels predate the installed interpreter: pydantic==2.9.2 resolves to
7
+ # pydantic-core 2.23.4, which publishes no cp314 wheel, so pip fell back to a
8
+ # Rust source build that fails outright ("the configured Python interpreter
9
+ # version (3.14) is newer than PyO3's maximum supported version (3.13)").
10
+ # Floating upward lets pip pick a release that actually ships a wheel for
11
+ # whatever Python the operator has.
12
+ fastapi>=0.115
13
+ uvicorn[standard]>=0.32
14
+ aiosqlite>=0.20
15
+ httpx>=0.27
16
+ pydantic>=2.11
17
+ python-multipart>=0.0.12
18
+ PyJWT>=2.9
19
+
20
+ # Token signing for camera/monitor access. The full `livekit` client SDK,
21
+ # opencv, pyaudio and picamera2 are robot-side only and live in
22
+ # requirements-robot.txt — the scheduler never joins a room or opens a device,
23
+ # it only mints tokens. Installing them here made every scheduler host build
24
+ # PyAudio from source and fail on a missing portaudio.h it never needed.
25
+ livekit-api>=0.10