Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Nov 22, 2024
1 parent 5548301 commit a7c2c97
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:


- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.4
rev: v0.8.0
hooks:
- id: ruff
name: ruff unused imports
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Packages for source formatting
# -----------------------------------------------------------------------------
pre-commit == 4.0.1
ruff == 0.7.4
ruff == 0.8.0
autotyping == 24.9.0
# -----------------------------------------------------------------------------
# Packages for other developement tasks
Expand Down
4 changes: 2 additions & 2 deletions requirements_setup.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp == 3.11.2
pydantic == 2.9.2
aiohttp == 3.11.7
pydantic == 2.10.1
bidict == 0.23.1
watchdog == 6.0.0
ujson == 5.10.0
Expand Down
2 changes: 1 addition & 1 deletion tests/test_openhab/test_items/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def test_OnOff(cls) -> None:
c = cls('item_name')
assert not c.is_on()
if not __version__.startswith('24.09.0'):
if not __version__.startswith('24.11.0'):
assert not c.is_off()

c.set_value(OnOffValue('ON'))
Expand Down

0 comments on commit a7c2c97

Please sign in to comment.