Skip to content

Commit 1de2fb2

Browse files
authored
Ignore warning from trio (#1262)
1 parent a4ea0e5 commit 1de2fb2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,12 @@ filterwarnings= [
181181
"ignore:There is no current event loop:DeprecationWarning",
182182
"ignore:zmq.eventloop.ioloop is deprecated in pyzmq 17. pyzmq now works with default tornado and asyncio eventloops.:DeprecationWarning",
183183
"module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning",
184-
"ignore:trio.MultiError is deprecated since Trio 0.22.0:trio.TrioDeprecationWarning",
184+
185185
# Ignore datetime warning.
186186
"ignore:datetime.datetime.utc:DeprecationWarning",
187+
188+
# https://github.com/python-trio/trio/issues/3053
189+
"ignore:The `hash` argument is deprecated in favor of `unsafe_hash` and will be removed in or after August 2025.",
187190
]
188191

189192
[tool.coverage.report]

0 commit comments

Comments
 (0)