Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
odoo_test_helper
httpx2
# starlette.testclient still uses the anyio.abc.BlockingPortal alias, which
# anyio 4.15 deprecates: the resulting DeprecationWarning fails checklog-odoo.
anyio<4.15

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
anyio<4.15
anyio!=4.15

@lmignon lmignon Sep 7, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nevertheless thank you for the fix 😏

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, but I think the problem isn't a regression in one release because the alias deprecation is intentional.
Version 4.15.1 was released on Sep 5 and behaves the same way (tested the warning in my local environment), so <4.15 is the narrowest thing that works

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheClaud99 Let me try something to simply ignore this warning...

Loading