Skip to content
Draft
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
5 changes: 3 additions & 2 deletions src/gt4py/next/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ def env_flag_to_int(name: str, default: int) -> int:
# NOTE: Ideally we would suppress the warnings using context managers directly in
# the backend. However, because this is not thread safe in Python versions before
# 3.14, we have to do it here.
warnings.filterwarnings(action="ignore", module="^dace(\..+)?")
warnings.filterwarnings(action="ignore", module=r"^dace(\..+)?")
warnings.filterwarnings(
action="ignore", module="^gt4py.next.program_processors.runners.dace.transformations(\..+)?"
action="ignore",
module=r"^gt4py.next.program_processors.runners.dace.transformations(\..+)?",
)


Expand Down