Skip to content

Commit

Permalink
Fix aiohttp version conflict (#33)
Browse files Browse the repository at this point in the history
* Fix aiohttp version conflict

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Additional pre-commit fixes

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
elahd and pre-commit-ci[bot] authored Dec 8, 2022
1 parent d598c69 commit 5e4534d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion pylaundry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .exceptions import VendLogFailure
from .helpers import MessagePacker

__version__ = "v0.1.4"
__version__ = "v0.1.5"

log = logging.getLogger(__name__)

Expand Down
15 changes: 7 additions & 8 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5e4534d

Please sign in to comment.