Skip to content

Commit c96a1a0

Browse files
committed
update requirements for build 4.7.5
1 parent 39f43e8 commit c96a1a0

4 files changed

Lines changed: 9 additions & 21 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.5.a1"
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
typing-extensions>=4
2-
aiohttp==3.13.4
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,12 +8,12 @@ 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.6
11+
cryptography==46.0.7
1212
pyopenssl==26.0.0
13-
requests==2.33.0
13+
requests==2.33.1
1414
voluptuous==0.15.2
1515
pyfiglet==1.0.4
16-
pandas==3.0.1
16+
pandas==3.0.2
1717
shortuuid==1.0.13
1818
tabulate==0.9.0
1919
numpy==2.4.4

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@
5858
long_description_content_type='text/markdown',
5959
install_requires=[
6060
"typing-extensions>=4",
61-
"aiohttp==3.13.4",
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.6",
69+
"cryptography==46.0.7",
7070
"pyopenssl==26.0.0",
71-
"requests==2.33.0",
71+
"requests==2.33.1",
7272
"voluptuous==0.15.2",
7373
"pyfiglet==1.0.4",
7474
'click==8.3.1',
@@ -82,7 +82,7 @@
8282
'importlib_metadata',
8383
'distro>=1.8.0',
8484
'numpy==2.4.4',
85-
'pandas==3.0.1'] + board_reqs + (
85+
'pandas==3.0.2'] + board_reqs + (
8686
['systemd-python'] if localsystem == "Linux" else [] ),
8787

8888
dependency_links=[

0 commit comments

Comments
 (0)