Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Nov 13, 2024
1 parent dcf3852 commit 2321f38
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- uses: pre-commit/[email protected]


Expand All @@ -20,7 +20,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/interface_mqtt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ MqttPublishOptions

import HABApp
from unittest.mock import MagicMock
HABApp.mqtt.util.topic_info.publish = MagicMock()
HABApp.mqtt.util.publish_options.publish = MagicMock()
# ------------ hide: stop -------------
from HABApp.mqtt.util import MqttPublishOptions

Expand Down
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Packages required to build the documentation
sphinx == 8.0.2
sphinx == 8.1.3
sphinx-autodoc-typehints == 2.5.0
sphinx_rtd_theme == 3.0.0
sphinx-exec-code == 0.12
sphinx_rtd_theme == 3.0.1
sphinx-exec-code == 0.13
autodoc_pydantic == 2.2.0
sphinx-copybutton == 0.5.2
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.0
ruff == 0.7.3
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,8 +1,8 @@
aiohttp == 3.10.9
aiohttp == 3.10.10
pydantic == 2.9.2
msgspec == 0.18.6
bidict == 0.23.1
watchdog == 5.0.3
watchdog == 6.0.0
ujson == 5.10.0
aiomqtt == 2.3.0

Expand Down
2 changes: 1 addition & 1 deletion requirements_tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
# -----------------------------------------------------------------------------
# Packages to run source tests
# -----------------------------------------------------------------------------
packaging == 24.1
packaging == 24.2
pytest == 8.3.3
pytest-asyncio == 0.24.0
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ envlist =
py310
py311
py312
py313
docs
slotscheck

Expand All @@ -13,6 +14,7 @@ python =
3.10: py310, docs
3.11: py311
3.12: py312, slotscheck
3.13: py313


[testenv]
Expand Down

0 comments on commit 2321f38

Please sign in to comment.