Skip to content

Commit 23944be

Browse files
committed
update requirements
1 parent 443f156 commit 23944be

6 files changed

Lines changed: 20 additions & 4 deletions

File tree

cbpi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "4.7.4.a1"
1+
__version__ = "4.7.4.a2"
22
__codename__ = "Winter Bock"

cbpi/controller/satellite_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def remove_key(self, d, key):
4444

4545
async def init(self):
4646

47-
self.client = aiomqtt.Client(
47+
self.client = aiomqtt.Client(
4848
self.host,
4949
port=self.port,
5050
username=self.username,

cbpi/extension/FermentationStep/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ async def on_timer_done(self, timer):
482482
return StepResult.DONE
483483

484484
async def on_timer_update(self, timer, seconds):
485+
logging.error("Timer update: {} seconds remaining".format(seconds))
485486
await self.push_update()
486487

487488
async def on_start(self):

cbpi/http_endpoints/http_upload.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,22 @@ def __init__(self, cbpi):
1515

1616
@request_mapping(path="/", method="POST", auth_required=False)
1717
async def FileUpload(self, request):
18+
"""
19+
description: FileUpload
20+
tags:
21+
- Upload
22+
parameters:
23+
- in: formData
24+
name: File
25+
type: file
26+
description: Recipe file to upload.
27+
28+
responses:
29+
"200":
30+
description: successful operation
31+
"""
1832
data = await request.post()
33+
logging.error("Received file upload request with data: {}".format(data))
1934
await self.controller.FileUpload(data)
2035
return web.Response(status=200)
2136

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ aiohttp-swagger==1.0.16
88
#async-timeout==4.0.3
99
aiojobs==1.4.0
1010
aiosqlite==0.22.1
11-
cryptography==46.0.3
11+
cryptography==46.0.5
1212
pyopenssl==25.3.0
1313
requests==2.32.5
1414
voluptuous==0.15.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"aiohttp-swagger==1.0.16",
6767
"aiojobs==1.4.0 ",
6868
"aiosqlite==0.22.1",
69-
"cryptography==46.0.3",
69+
"cryptography==46.0.5",
7070
"pyopenssl==25.3.0",
7171
"requests==2.32.5",
7272
"voluptuous==0.15.2",

0 commit comments

Comments
 (0)