robopark 2.8.8 → 2.8.10
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.
- package/package.json +2 -2
- package/scheduler/Dockerfile +6 -1
- package/scheduler/__pycache__/main.cpython-312.pyc +0 -0
- package/scheduler/__pycache__/preview_agent.cpython-312.pyc +0 -0
- package/scheduler/main.py +431 -26
- package/scheduler/preview_agent.py +644 -0
- package/scheduler/requirements.txt +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robopark",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.10",
|
|
4
4
|
"description": "RoboPark fleet control CLI — set up, watch, and drive a fleet of talking robots. The operator front-end over the infinicode mesh.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"node": ">=20"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"infinicode": "^2.8.
|
|
18
|
+
"infinicode": "^2.8.9"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"robopark",
|
package/scheduler/Dockerfile
CHANGED
|
@@ -3,7 +3,12 @@ FROM python:3.11-slim
|
|
|
3
3
|
|
|
4
4
|
WORKDIR /app
|
|
5
5
|
|
|
6
|
-
# Install dependencies
|
|
6
|
+
# Install build dependencies for pyaudio / opencv wheels, then Python packages.
|
|
7
|
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
8
|
+
gcc g++ libportaudio2 portaudio19-dev \
|
|
9
|
+
libgl1 libglib2.0-0 libsm6 libxext6 libxrender-dev \
|
|
10
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
11
|
+
|
|
7
12
|
COPY requirements.txt .
|
|
8
13
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
9
14
|
|
|
Binary file
|
|
Binary file
|