Skip to content

Commit 7642383

Browse files
Bump dependencies from commit fa2686 (#2913)
1 parent 683f5cb commit 7642383

3 files changed

Lines changed: 11 additions & 28 deletions

File tree

docs-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ click==8.1.7
2222
# via towncrier
2323
cryptography==41.0.7
2424
# via pyopenssl
25-
docutils==0.19
25+
docutils==0.20.1
2626
# via
2727
# sphinx
2828
# sphinx-rtd-theme
@@ -36,7 +36,7 @@ imagesize==1.4.1
3636
# via sphinx
3737
immutables==0.20
3838
# via -r docs-requirements.in
39-
importlib-metadata==7.0.0
39+
importlib-metadata==7.0.1
4040
# via sphinx
4141
importlib-resources==6.1.1
4242
# via towncrier

src/trio/_subprocess.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,11 @@ def returncode(self) -> int | None:
232232
async def __aenter__(self) -> Self:
233233
return self
234234

235+
# Type ignore is for `Type of decorated function contains type "Any" ("Callable[[Process], Coroutine[Any, Any, None]]")`
235236
@deprecated(
236237
"0.20.0", issue=1104, instead="run_process or nursery.start(run_process, ...)"
237238
)
238-
async def aclose(self) -> None:
239+
async def aclose(self) -> None: # type: ignore[misc]
239240
"""Close any pipes we have to the process (both input and output)
240241
and wait for it to exit.
241242

test-requirements.txt

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
#
55
# pip-compile test-requirements.in
66
#
7-
aiohttp==3.9.1
8-
# via black
9-
aiosignal==1.3.1
10-
# via aiohttp
117
alabaster==0.7.13
128
# via sphinx
139
astor==0.8.1
@@ -16,16 +12,13 @@ astroid==3.0.2
1612
# via pylint
1713
async-generator==1.10
1814
# via -r test-requirements.in
19-
async-timeout==4.0.3
20-
# via aiohttp
2115
attrs==23.1.0
2216
# via
2317
# -r test-requirements.in
24-
# aiohttp
2518
# outcome
2619
babel==2.14.0
2720
# via sphinx
28-
black==23.12.0 ; implementation_name == "cpython"
21+
black==23.12.1 ; implementation_name == "cpython"
2922
# via -r test-requirements.in
3023
build==1.0.3
3124
# via pip-tools
@@ -41,7 +34,7 @@ click==8.1.7
4134
# pip-tools
4235
codespell==2.2.6
4336
# via -r test-requirements.in
44-
coverage==7.3.2
37+
coverage==7.3.4
4538
# via -r test-requirements.in
4639
cryptography==41.0.7
4740
# via
@@ -57,25 +50,20 @@ exceptiongroup==1.2.0 ; python_version < "3.11"
5750
# via
5851
# -r test-requirements.in
5952
# pytest
60-
frozenlist==1.4.0
61-
# via
62-
# aiohttp
63-
# aiosignal
6453
idna==3.6
6554
# via
6655
# -r test-requirements.in
6756
# requests
6857
# trustme
69-
# yarl
7058
imagesize==1.4.1
7159
# via sphinx
72-
importlib-metadata==7.0.0
60+
importlib-metadata==7.0.1
7361
# via
7462
# build
7563
# sphinx
7664
iniconfig==2.0.0
7765
# via pytest
78-
isort==5.13.1
66+
isort==5.13.2
7967
# via pylint
8068
jedi==0.19.1
8169
# via -r test-requirements.in
@@ -85,11 +73,7 @@ markupsafe==2.1.3
8573
# via jinja2
8674
mccabe==0.7.0
8775
# via pylint
88-
multidict==6.0.4
89-
# via
90-
# aiohttp
91-
# yarl
92-
mypy==1.7.1 ; implementation_name == "cpython"
76+
mypy==1.8.0 ; implementation_name == "cpython"
9377
# via -r test-requirements.in
9478
mypy-extensions==1.0.0 ; implementation_name == "cpython"
9579
# via
@@ -128,15 +112,15 @@ pyopenssl==23.3.0
128112
# via -r test-requirements.in
129113
pyproject-hooks==1.0.0
130114
# via build
131-
pyright==1.1.339
115+
pyright==1.1.342
132116
# via -r test-requirements.in
133117
pytest==7.4.3
134118
# via -r test-requirements.in
135119
pytz==2023.3.post1
136120
# via babel
137121
requests==2.31.0
138122
# via sphinx
139-
ruff==0.1.7
123+
ruff==0.1.9
140124
# via -r test-requirements.in
141125
sniffio==1.3.0
142126
# via -r test-requirements.in
@@ -190,8 +174,6 @@ urllib3==2.1.0
190174
# via requests
191175
wheel==0.42.0
192176
# via pip-tools
193-
yarl==1.9.4
194-
# via aiohttp
195177
zipp==3.17.0
196178
# via importlib-metadata
197179

0 commit comments

Comments
 (0)