Skip to content

Commit 18eea6a

Browse files
authored
Merge pull request #179 from PiBrewing/development
Development
2 parents f6c0216 + c96a1a0 commit 18eea6a

4 files changed

Lines changed: 18 additions & 30 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"
1+
__version__ = "4.7.5"
22
__codename__ = "Winter Bock"

cbpi/extension/FermenterHysteresis/__init__.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
import asyncio
2-
import json
32
import logging
4-
import webbrowser
5-
from asyncio import tasks
63

7-
import aiohttp
8-
from aiohttp import web
94
from cbpi.api import *
10-
from cbpi.api.base import CBPiBase
11-
from cbpi.api.config import ConfigType
12-
from cbpi.api.dataclasses import Fermenter, Props, Step
135
from cbpi.controller.fermentation_controller import FermentationController
146

15-
16-
177
class FermenterAutostart(CBPiExtension):
188

199
def __init__(self, cbpi):
@@ -57,7 +47,6 @@ async def run(self):
5747
except:
5848
pass
5949

60-
6150
@parameters(
6251
[
6352
Property.Number(
@@ -170,7 +159,6 @@ async def run(self):
170159
if self.cooler:
171160
await self.actor_off(self.cooler)
172161

173-
174162
@parameters(
175163
[
176164
Property.Number(

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
typing-extensions>=4
2-
aiohttp==3.13.3
2+
aiohttp==3.13.5
33
aiohttp-auth==0.1.1
44
aiohttp-route-decorator==0.1.4
55
aiohttp-security==0.5.0
@@ -8,24 +8,24 @@ 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.5
12-
pyopenssl==25.3.0
13-
requests==2.32.5
11+
cryptography==46.0.7
12+
pyopenssl==26.0.0
13+
requests==2.33.1
1414
voluptuous==0.15.2
1515
pyfiglet==1.0.4
16-
pandas==2.3.3
16+
pandas==3.0.2
1717
shortuuid==1.0.13
1818
tabulate==0.9.0
19-
numpy==2.3.5
19+
numpy==2.4.4
2020
cbpi4gui
2121
click==8.3.1
2222
importlib_metadata
23-
aiomqtt==2.5.0
24-
psutil==7.1.3
23+
aiomqtt==2.5.1
24+
psutil==7.2.2
2525
zipp>=0.5
2626
distro>=1.8.0
2727
colorama==0.4.6
2828
pytest-aiohttp
2929
coverage==6.3.1
30-
inquirer==3.4.0
30+
inquirer==3.4.1
3131
systemd-python

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,31 +58,31 @@
5858
long_description_content_type='text/markdown',
5959
install_requires=[
6060
"typing-extensions>=4",
61-
"aiohttp==3.13.3",
61+
"aiohttp==3.13.5",
6262
"aiohttp-auth==0.1.1",
6363
"aiohttp-route-decorator==0.1.4",
6464
"aiohttp-security==0.5.0",
6565
"aiohttp-session==2.12.1",
6666
"aiohttp-swagger==1.0.16",
6767
"aiojobs==1.4.0 ",
6868
"aiosqlite==0.22.1",
69-
"cryptography==46.0.5",
70-
"pyopenssl==25.3.0",
71-
"requests==2.32.5",
69+
"cryptography==46.0.7",
70+
"pyopenssl==26.0.0",
71+
"requests==2.33.1",
7272
"voluptuous==0.15.2",
7373
"pyfiglet==1.0.4",
7474
'click==8.3.1',
7575
'shortuuid==1.0.13',
7676
'tabulate==0.9.0',
77-
'aiomqtt==2.5.0',
77+
'aiomqtt==2.5.1',
7878
'inquirer==3.4.1',
7979
'colorama==0.4.6',
80-
'psutil==7.1.3',
80+
'psutil==7.2.2',
8181
'cbpi4gui',
8282
'importlib_metadata',
8383
'distro>=1.8.0',
84-
'numpy==2.3.5',
85-
'pandas==2.3.3'] + board_reqs + (
84+
'numpy==2.4.4',
85+
'pandas==3.0.2'] + board_reqs + (
8686
['systemd-python'] if localsystem == "Linux" else [] ),
8787

8888
dependency_links=[

0 commit comments

Comments
 (0)