mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
test newer cryptography version as 40.0.0 may cuase issues on older 32 bit systems
This commit is contained in:
parent
7d9d010e0c
commit
5e2dc35b30
4 changed files with 4 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
||||||
__version__ = "4.1.8.a4"
|
__version__ = "4.1.8.a5"
|
||||||
__codename__ = "Groundhog Day"
|
__codename__ = "Groundhog Day"
|
||||||
|
|
||||||
|
|
|
@ -233,9 +233,8 @@ class PluginController():
|
||||||
meta = metadata(key)
|
meta = metadata(key)
|
||||||
if meta["Name"] != "cbpi4gui" and meta["Keywords"] == "globalsettings":
|
if meta["Name"] != "cbpi4gui" and meta["Keywords"] == "globalsettings":
|
||||||
result.append(dict(label=meta["Name"], value=meta["Name"]))
|
result.append(dict(label=meta["Name"], value=meta["Name"]))
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("FAILED to load plugin {} ".format(key))
|
logger.error("FAILED to read metadata for plugin {} ".format(key))
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(e)
|
logger.error(e)
|
||||||
|
|
|
@ -7,7 +7,7 @@ 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.0
|
cryptography==40.0.1
|
||||||
requests==2.28.1
|
requests==2.28.1
|
||||||
voluptuous==0.13.1
|
voluptuous==0.13.1
|
||||||
pyfiglet==0.8.post1
|
pyfiglet==0.8.post1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -47,7 +47,7 @@ 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.0",
|
"cryptography==40.0.1",
|
||||||
"requests==2.28.1",
|
"requests==2.28.1",
|
||||||
"voluptuous==0.13.1",
|
"voluptuous==0.13.1",
|
||||||
"pyfiglet==0.8.post1",
|
"pyfiglet==0.8.post1",
|
||||||
|
|
Loading…
Reference in a new issue