Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
* Upgrade pre-commit dependencies
* Upgrade Python requirements
  • Loading branch information
replaceafill authored Apr 15, 2024
1 parent b113ef6 commit 2388fce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- repo: https://github.com/asottile/pyupgrade
Expand All @@ -23,5 +23,5 @@ repos:
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==23.9.16
- flake8-bugbear==24.2.6
- flake8-comprehensions==3.14.0
2 changes: 1 addition & 1 deletion features/steps/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def unzip(zip_path):
zip_ref = zipfile.ZipFile(zip_path, "r")
try:
zip_ref.extractall(directory_to_extract_to)
except BaseException:
except Exception:
pass
finally:
zip_ref.close()
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ exceptiongroup==1.2.0
# -r requirements.txt
# trio
# trio-websocket
filelock==3.13.3
filelock==3.13.4
# via
# tox
# virtualenv
h11==0.14.0
# via
# -r requirements.txt
# wsproto
idna==3.6
idna==3.7
# via
# -r requirements.txt
# requests
Expand Down Expand Up @@ -141,7 +141,7 @@ trio-websocket==0.11.1
# via
# -r requirements.txt
# selenium
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# -r requirements.txt
# selenium
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exceptiongroup==1.2.0
# trio-websocket
h11==0.14.0
# via wsproto
idna==3.6
idna==3.7
# via
# requests
# trio
Expand Down Expand Up @@ -70,7 +70,7 @@ trio==0.25.0
# trio-websocket
trio-websocket==0.11.1
# via selenium
typing-extensions==4.10.0
typing-extensions==4.11.0
# via selenium
urllib3[socks]==2.2.1
# via
Expand Down

0 comments on commit 2388fce

Please sign in to comment.