Skip to content

Commit 4669691

Browse files
authored
1.0.4 Added start check
2 parents 9a06f4a + f2da023 commit 4669691

6 files changed

Lines changed: 27 additions & 13 deletions

File tree

.github/workflows/pull-request-check.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,20 @@ jobs:
202202
run: |
203203
python -c "import debiaiServer; print('debiai_gui module imported successfully')"
204204
debiai-gui --help
205+
- name: Test debiai-gui start command
206+
run: |
207+
mkdir debiai_data
208+
debiai-gui start --no-browser --data-folder debiai_data &
209+
DEBIAI_PID=$!
210+
sleep 5
211+
if kill -0 $DEBIAI_PID 2>/dev/null; then
212+
echo "debiai-gui started successfully"
213+
kill $DEBIAI_PID
214+
exit 0
215+
else
216+
echo "debiai-gui failed to start"
217+
exit 1
218+
fi
205219
206220
docker-build-check:
207221
# Build the docker image and check that it can run

debiaiServer/api/v1/debiai/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
swagger: "2.0"
22
info:
3-
version: 1.0.3
3+
version: 1.0.4
44
title: DebiAI_APPLICATION_PROJECT_BACKEND_API
55
description: DebiAI backend api
66
contact:

debiaiServer/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
Flask == 2.0.3
1+
Flask == 2.2.3
22
flask_cors == 3.0.8
3-
connexion == 2.6.0
4-
requests == 2.25.1
3+
connexion == 2.14.2
4+
requests >= 2.27
55
swagger-ui-bundle == 0.0.5
66
ujson == 5.8.0
7-
kafka-python == 2.0.2
7+
kafka-python == 2.0.3
88
openapi_spec_validator == 0.2.8
99
cacheout == 0.14.1
1010
termcolor==2.3.0
11-
werkzeug==2.2.2
11+
werkzeug>=2.2.2
1212
psutil==6.0.0
1313
waitress==3.0.0
1414
jsonschema==3.2.0

debiaiServer/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
swagger: "2.0"
22
info:
3-
version: 1.0.3
3+
version: 1.0.4
44
title: DebiAI_BACKEND_API
55
description: DebiAI backend api
66
contact:

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "debiai_frontend",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Frontend for Debiai, made with Vuejs",
55
"license": "Apache-2.0",
66
"scripts": {

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ def get_version():
3232
packages=find_packages(include=["debiaiServer", "debiaiServer.*"]),
3333
include_package_data=True,
3434
install_requires=[
35-
"Flask==2.0.3",
35+
"Flask==2.2.3",
3636
"flask_cors==3.0.8",
37-
"connexion==2.6.0",
38-
"requests==2.25.1",
37+
"connexion==2.14.2",
38+
"requests>=2.27",
3939
"swagger-ui-bundle==0.0.5",
4040
"ujson==5.8.0",
41-
"kafka-python==2.0.2",
41+
"kafka-python==2.0.3",
4242
"openapi_spec_validator==0.2.8",
4343
"cacheout==0.14.1",
4444
"termcolor==2.3.0",
45-
"werkzeug==2.2.2",
45+
"werkzeug>=2.2.2",
4646
"psutil==6.0.0",
4747
"waitress==3.0.0",
4848
"pickledb==1.3.2",

0 commit comments

Comments
 (0)