Skip to content

Commit e1dcfff

Browse files
authored
chore: update dev dependencies (#1486)
1 parent 4c4e13c commit e1dcfff

File tree

5 files changed

+20
-19
lines changed

5 files changed

+20
-19
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.1.0
5+
rev: v4.3.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
@@ -15,16 +15,16 @@ repos:
1515
- id: check-executables-have-shebangs
1616
- id: check-merge-conflict
1717
- repo: https://github.com/psf/black
18-
rev: 22.3.0
18+
rev: 22.6.0
1919
hooks:
2020
- id: black
2121
- repo: https://github.com/pre-commit/mirrors-mypy
22-
rev: v0.942
22+
rev: v0.971
2323
hooks:
2424
- id: mypy
2525
additional_dependencies: [types-pyOpenSSL==21.0.3]
2626
- repo: https://github.com/pycqa/flake8
27-
rev: 4.0.1
27+
rev: 5.0.4
2828
hooks:
2929
- id: flake8
3030
- repo: https://github.com/pycqa/isort

local-requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
auditwheel==5.1.2
2-
autobahn==22.3.2
3-
black==22.3.0
4-
flake8==4.0.1
2+
autobahn==22.7.1
3+
black==22.6.0
4+
flake8==5.0.4
55
flaky==3.7.0
6-
mypy==0.942
6+
mypy==0.971
77
objgraph==3.5.0
8-
Pillow==9.1.1
8+
Pillow==9.2.0
99
pixelmatch==0.3.0
10-
pre-commit==2.18.1
10+
pre-commit==2.20.0
1111
pyOpenSSL==22.0.0
12-
pytest==7.1.1
13-
pytest-asyncio==0.18.3
12+
pytest==7.1.2
13+
pytest-asyncio==0.19.0
1414
pytest-cov==3.0.0
1515
pytest-repeat==0.9.1
1616
pytest-timeout==2.1.0
1717
pytest-xdist==2.5.0
18-
requests==2.27.1
18+
requests==2.28.1
1919
service_identity==21.1.0
20-
setuptools==60.9.3
21-
twine==3.8.0
20+
setuptools==63.4.2
21+
twine==4.0.1
2222
twisted==22.4.0
23-
types-pyOpenSSL==22.0.1
23+
types-pyOpenSSL==22.0.10
2424
wheel==0.37.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools-scm==6.3.2", "wheel==0.37.0", "auditwheel==5.0.0"]
2+
requires = ["setuptools-scm==7.0.5", "wheel==0.37.1", "auditwheel==5.1.2"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.pytest.ini_options]

scripts/documentation_provider.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ def print_entry(
205205

206206
def print_events(self, class_name: str) -> None:
207207
clazz = self.classes[class_name]
208-
if events := clazz["events"]:
208+
events = clazz["events"]
209+
if events:
209210
doc = []
210211
for event_type in ["on", "once"]:
211212
for event in events:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def _download_and_extract_local_driver(
232232
"write_to": "playwright/_repo_version.py",
233233
"write_to_template": 'version = "{version}"\n',
234234
},
235-
setup_requires=["setuptools-scm==6.3.2", "wheel==0.37.0"],
235+
setup_requires=["setuptools-scm==7.0.5", "wheel==0.37.1"],
236236
entry_points={
237237
"console_scripts": [
238238
"playwright=playwright.__main__:main",

0 commit comments

Comments
 (0)