mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
adapted requirements (cryptography/pyopenssl for security, asyncio-mqtt to aiomqtt due to change of package name)
This commit is contained in:
parent
1d9b27ed4b
commit
355376a1ba
4 changed files with 8 additions and 6 deletions
|
@ -1,3 +1,3 @@
|
||||||
__version__ = "4.1.10"
|
__version__ = "4.1.11.a1"
|
||||||
__codename__ = "Groundhog Day"
|
__codename__ = "Groundhog Day"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import asyncio
|
import asyncio
|
||||||
import json
|
import json
|
||||||
from re import M
|
from re import M
|
||||||
from asyncio_mqtt import Client, MqttError, Will
|
from aiomqtt import Client, MqttError, Will
|
||||||
from contextlib import AsyncExitStack, asynccontextmanager
|
from contextlib import AsyncExitStack, asynccontextmanager
|
||||||
from cbpi import __version__
|
from cbpi import __version__
|
||||||
import logging
|
import logging
|
||||||
|
|
|
@ -7,7 +7,8 @@ aiohttp-session==2.12.0
|
||||||
aiohttp-swagger==1.0.16
|
aiohttp-swagger==1.0.16
|
||||||
aiojobs==1.1.0
|
aiojobs==1.1.0
|
||||||
aiosqlite==0.17.0
|
aiosqlite==0.17.0
|
||||||
cryptography==40.0.1
|
cryptography==41.0.1
|
||||||
|
pyopenssl==23.2.0
|
||||||
requests==2.31.0
|
requests==2.31.0
|
||||||
voluptuous==0.13.1
|
voluptuous==0.13.1
|
||||||
pyfiglet==0.8.post1
|
pyfiglet==0.8.post1
|
||||||
|
@ -18,7 +19,7 @@ numpy==1.24.1
|
||||||
cbpi4gui
|
cbpi4gui
|
||||||
click==8.1.3
|
click==8.1.3
|
||||||
importlib_metadata==4.11.1
|
importlib_metadata==4.11.1
|
||||||
asyncio-mqtt==0.16.1
|
aiomqtt==1.0.0
|
||||||
psutil==5.9.4
|
psutil==5.9.4
|
||||||
zipp>=0.5
|
zipp>=0.5
|
||||||
colorama==0.4.6
|
colorama==0.4.6
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -47,14 +47,15 @@ setup(name='cbpi4',
|
||||||
"aiohttp-swagger==1.0.16",
|
"aiohttp-swagger==1.0.16",
|
||||||
"aiojobs==1.1.0 ",
|
"aiojobs==1.1.0 ",
|
||||||
"aiosqlite==0.17.0",
|
"aiosqlite==0.17.0",
|
||||||
"cryptography==40.0.1",
|
"cryptography==41.0.1",
|
||||||
|
"pyopenssl==23.2.0",
|
||||||
"requests==2.31.0",
|
"requests==2.31.0",
|
||||||
"voluptuous==0.13.1",
|
"voluptuous==0.13.1",
|
||||||
"pyfiglet==0.8.post1",
|
"pyfiglet==0.8.post1",
|
||||||
'click==8.1.3',
|
'click==8.1.3',
|
||||||
'shortuuid==1.0.11',
|
'shortuuid==1.0.11',
|
||||||
'tabulate==0.9.0',
|
'tabulate==0.9.0',
|
||||||
'asyncio-mqtt==0.16.1',
|
'aiomqtt==1.0.0',
|
||||||
'inquirer==3.1.1',
|
'inquirer==3.1.1',
|
||||||
'colorama==0.4.6',
|
'colorama==0.4.6',
|
||||||
'psutil==5.9.4',
|
'psutil==5.9.4',
|
||||||
|
|
Loading…
Reference in a new issue