Skip to content

Commit

Permalink
Bump 3rd party (#2331)
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen authored Sep 23, 2024
1 parent e9ee7c3 commit bcd546b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
3 changes: 1 addition & 2 deletions pymodbus/pdu/register_read_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
import struct

from pymodbus.exceptions import ModbusIOException
from pymodbus.pdu import ExceptionResponse, ModbusRequest, ModbusResponse
from pymodbus.pdu import ModbusExceptions as merror
from pymodbus.pdu import ExceptionResponse
from pymodbus.pdu import ModbusRequest, ModbusResponse


class ReadRegistersRequestBase(ModbusRequest):
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ repl = [

simulator = [
"aiohttp>=3.8.6;python_version<'3.12'",
"aiohttp>=3.9.5;python_version=='3.12'"
"aiohttp>=3.10.5;python_version=='3.12'"
]
documentation = [
"recommonmark>=0.7.1",
"Sphinx>=7.3.7",
"sphinx-rtd-theme>=2.0.0"
]
development = [
"build>=1.2.1",
"build>=1.2.2",
"codespell>=2.3.0",
"coverage>=7.6.0",
"mypy>=1.10.1",
"pylint>=3.2.5",
"pytest>=8.2.2",
"pytest-asyncio>=0.23.8",
"coverage>=7.6.1",
"mypy>=1.11.2",
"pylint>=3.3.0",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-profiling>=1.7.0",
"pytest-timeout>=2.3.1",
Expand Down Expand Up @@ -163,7 +163,8 @@ attr-rgx = "([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$"
method-rgx = "[a-z_][a-zA-Z0-9_]{2,}$"

[tool.pylint.design]
max-args = "10"
max-positional = 15
max-args = 10
max-locals = "25"
max-returns = "11"
max-branches = "27"
Expand Down

0 comments on commit bcd546b

Please sign in to comment.