Skip to content

Commit

Permalink
Update requirements; add pylint disable rule for linter checks on new…
Browse files Browse the repository at this point in the history
…er Python versions
  • Loading branch information
jace committed Jul 21, 2023
1 parent b352542 commit 2618ec8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions funnel/cli/periodic/mnrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ async def read(self, size: int) -> bytes:
# versions we need this try/except block
try:
# Ignore size parameter since anext doesn't take it
# pylint: disable=unnecessary-dunder-call
return await self.data.__anext__()
except StopAsyncIteration:
return b''
Expand Down
8 changes: 4 additions & 4 deletions requirements/base.py37.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ blinker==1.6.2
# -r requirements/base.in
# baseframe
# coaster
boto3==1.28.7
boto3==1.28.8
# via -r requirements/base.in
botocore==1.31.7
botocore==1.31.8
# via
# boto3
# s3transfer
Expand Down Expand Up @@ -112,7 +112,7 @@ cssselect==1.2.0
# via premailer
cssutils==2.7.1
# via premailer
dataclasses-json==0.5.12
dataclasses-json==0.5.13
# via -r requirements/base.in
dnspython==2.3.0
# via
Expand Down Expand Up @@ -328,7 +328,7 @@ packaging==23.1
# marshmallow
passlib==1.7.4
# via -r requirements/base.in
phonenumbers==8.13.16
phonenumbers==8.13.17
# via -r requirements/base.in
premailer==3.10.0
# via -r requirements/base.in
Expand Down
10 changes: 5 additions & 5 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ blinker==1.6.2
# baseframe
# coaster
# flask
boto3==1.28.7
boto3==1.28.8
# via -r requirements/base.in
botocore==1.31.7
botocore==1.31.8
# via
# boto3
# s3transfer
Expand Down Expand Up @@ -107,7 +107,7 @@ cssselect==1.2.0
# via premailer
cssutils==2.7.1
# via premailer
dataclasses-json==0.5.12
dataclasses-json==0.5.13
# via -r requirements/base.in
dnspython==2.4.0
# via
Expand Down Expand Up @@ -276,7 +276,7 @@ markupsafe==2.1.3
# mako
# werkzeug
# wtforms
marshmallow==3.19.0
marshmallow==3.20.1
# via dataclasses-json
maxminddb==2.4.0
# via geoip2
Expand Down Expand Up @@ -312,7 +312,7 @@ packaging==23.1
# marshmallow
passlib==1.7.4
# via -r requirements/base.in
phonenumbers==8.13.16
phonenumbers==8.13.17
# via -r requirements/base.in
premailer==3.10.0
# via -r requirements/base.in
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.py37.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pytest-variables==3.0.0
# via pytest-selenium
requests-mock==1.11.0
# via -r requirements/test.in
respx==0.20.1
respx==0.20.2
# via -r requirements/test.in
selenium==4.9.1
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pytest-variables==3.0.0
# via pytest-selenium
requests-mock==1.11.0
# via -r requirements/test.in
respx==0.20.1
respx==0.20.2
# via -r requirements/test.in
selenium==4.9.1
# via
Expand Down

0 comments on commit 2618ec8

Please sign in to comment.