Skip to content

Commit

Permalink
Merge pull request #146 from PiBrewing/development
Browse files Browse the repository at this point in the history
update to address dependabot alert and bugfix in cooldown step
  • Loading branch information
avollkopf authored Sep 15, 2024
2 parents 8b42600 + 4c70ef6 commit ce9a722
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cbpi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.4.3"
__version__ = "4.4.5"
__codename__ = "Yeast Starter"

5 changes: 4 additions & 1 deletion cbpi/extension/mashstep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,10 @@ async def on_timer_update(self,timer, seconds):
await self.push_update()

async def on_start(self):
warnings.simplefilter('ignore', np.RankWarning)
try:
warnings.simplefilter('ignore', np.exceptions.RankWarning)
except Exception as e:
logging.error(f"Numpy Error: {e}")
self.temp_array = []
self.time_array = []
self.kettle = self.get_kettle(self.props.get("Kettle", None))
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
typing-extensions>=4
aiohttp==3.9.5
aiohttp==3.10.5
aiohttp-auth==0.1.1
aiohttp-route-decorator==0.1.4
aiohttp-security==0.5.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
long_description_content_type='text/markdown',
install_requires=[
"typing-extensions>=4",
"aiohttp==3.9.5",
"aiohttp==3.10.5",
"aiohttp-auth==0.1.1",
"aiohttp-route-decorator==0.1.4",
"aiohttp-security==0.5.0",
Expand Down

0 comments on commit ce9a722

Please sign in to comment.