Skip to content

Commit fa63bb4

Browse files
committed
bullseye wip
1 parent c096602 commit fa63bb4

12 files changed

+34
-34
lines changed

main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949

5050
# Serve a custom version of the swagger ui (Jinja2 templates) based on the default one
5151
# from the folder 'swagger-ui'. Clone the 'swagger-ui' repository inside the backend folder
52-
connexionApp = connexion.App(__name__, swagger_ui=True, swagger_path='swagger-ui/')
52+
options = {"swagger_ui": False}
53+
connexionApp = connexion.App(__name__, options=options)
5354

5455
# Connexion wraps FlaskApp, so app becomes connexionApp.app
5556
app = connexionApp.app

requirements_stub.txt

+30-31
Original file line numberDiff line numberDiff line change
@@ -3,48 +3,47 @@
33

44
absl-py==1.0.0
55
astor==0.8.1
6-
Babel==2.9.1
7-
certifi==2021.10.8
6+
Babel==2.10.1
7+
certifi==2022.5.18.1
88
chardet==3.0.4
9-
click==7.1.2
10-
clickclick==1.2.2
11-
connexion==1.5.3
12-
Flask==1.1.4
13-
Flask-Babel==0.12.2
9+
click==8.1.3
10+
clickclick==20.10.2
11+
connexion==2.13.1
12+
Flask==2.1.2
13+
Flask-Babel==2.0.0
1414
Flask-Cors==3.0.10
15-
gast==0.2.2
16-
grpcio==1.41.1
17-
idna==2.10
18-
pybind11==2.9.0
15+
gast==0.5.3
16+
grpcio==1.46.3
17+
idna==3.3
18+
pybind11==2.9.2
1919
inflection==0.5.1
20-
itsdangerous==1.1.0
21-
Jinja2==2.11.3
22-
jsonschema==2.6.0
23-
Markdown==3.2.2
24-
MarkupSafe==1.1.1
25-
numpy==1.21.4
20+
itsdangerous==2.1.2
21+
Jinja2==3.1.2
22+
jsonschema==4.5.1
23+
Markdown==3.3.7
24+
MarkupSafe==2.1.1
25+
numpy==1.22.4
2626
opencv-contrib-python==4.5.3.56
2727
pigpio==1.78
28-
Pillow==9.0.0
29-
protobuf==3.11.3
28+
Pillow==9.1.1
29+
protobuf==4.21.1
3030
Pypubsub==4.0.3
31-
pytz==2021.3
32-
pyyaml>=4.2b1
33-
pyzbar==0.1.8
31+
pytz==2022.1
32+
pyyaml==6.0
33+
pyzbar==0.1.9
3434
requests==2.27.1
3535
six==1.16.0
3636
swagger-spec-validator==2.7.4
3737
termcolor==1.1.0
38-
tinydb==3.15.2
39-
tensorflow==2.1.0
40-
tensorflow_hub>=0.7.0
41-
urllib3==1.26.8
42-
Werkzeug==0.16.1
43-
setuptools==42.0.1
38+
tinydb==4.7.0
39+
tflite_runtime==2.8.0
40+
urllib3==1.26.9
41+
Werkzeug==2.1.2
42+
setuptools==62.3.2
4443
smbus2==0.4.1
4544
spidev==3.5
46-
cachetools==3.1.1
45+
cachetools==5.1.0
4746
sox==1.4.1
48-
pyalsaaudio==0.9.0
49-
pytesseract==0.3.8
47+
pyalsaaudio==0.9.2
48+
pytesseract==0.3.9
5049
sox==1.4.1

sounds/buzz.mp3

-90.9 KB
Binary file not shown.

sounds/i-see-you.mp3

-31.4 KB
Binary file not shown.

sounds/phaser.mp3

-53 KB
Binary file not shown.

sounds/scanner.mp3

-64 KB
Binary file not shown.

sounds/shutdown.mp3

-52.6 KB
Binary file not shown.

sounds/shutter.mp3

-28.4 KB
Binary file not shown.

sounds/startup.mp3

-40 KB
Binary file not shown.

sounds/still-there.mp3

-26.2 KB
Binary file not shown.

sounds/there-you-are.mp3

-27.3 KB
Binary file not shown.

v2.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ paths:
217217
description: Components names to be tested
218218
schema:
219219
type: object
220-
default: {'varargin': ['motors', 'sonar', 'speaker', 'ocr']}
220+
# default: {'varargin': ['motors', 'sonar', 'speaker', 'ocr']}
221221
required:
222222
- varargin
223223
properties:
@@ -258,7 +258,7 @@ paths:
258258
description: Movement speed and duration
259259
schema:
260260
type: object
261-
default: {'speed': 100, 'elapse':0, 'distance':0}
261+
# default: {'speed': 100, 'elapse':0, 'distance':0}
262262
required:
263263
- speed
264264
- elapse

0 commit comments

Comments
 (0)