diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b605bb2..9d5b681 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -83,7 +83,8 @@ repos: entry: pylint language: system types: [python] - exclude: (.vscode|.devcontainer|.github|test) + exclude: (.vscode|.devcontainer|.mypy_cache|pylint) args: - --output-format=colorized - -d W0511 + - --fail-on=all diff --git a/.pylintrc b/.pylintrc index 1033a9c..e3256ce 100644 --- a/.pylintrc +++ b/.pylintrc @@ -16,7 +16,7 @@ max-line-length = 88 py-version = 3.9 ignore = tests jobs = 2 -load-plugins = pylint.extensions.code_style, pylint.extensions.typing, pylint_strict_informational +load-plugins = pylint.extensions.code_style, pylint.extensions.typing persistent = false [MESSAGES CONTROL] diff --git a/pylaundry/__init__.py b/pylaundry/__init__.py index 2a1bacb..dd49926 100644 --- a/pylaundry/__init__.py +++ b/pylaundry/__init__.py @@ -36,7 +36,7 @@ from .exceptions import VendLogFailure from .helpers import MessagePacker -__version__ = "v0.1.4" +__version__ = "v0.1.5" log = logging.getLogger(__name__) diff --git a/requirements-dev.txt b/requirements-dev.txt index 83c4316..4c23e89 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,9 +1,8 @@ -cryptography==36.0.2 +cryptography>=36.0.2 pre-commit >= 2.17.0 -pylint-strict-informational==0.1 -deepdiff==6.2.1 -pytest==7.2.0 -pytest-asyncio==0.20.2 -coverage==6.5.0 -aioresponses==0.7.3 -python-dateutil==2.8.2 +deepdiff>=6.2.1 +pytest>=7.2.0 +pytest-asyncio>=0.20.2 +coverage>=6.5.0 +aioresponses>=0.7.3 +python-dateutil>=2.8.2 diff --git a/setup.cfg b/setup.cfg index dea64fe..fb6d559 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,5 +21,5 @@ include_package_data = True packages = find: python_requires = >=3.9 install_requires = - aiohttp == 3.8.1 + aiohttp >= 3.8.1 cryptography >= 36.0.2