Skip to content
Merged
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
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ filterwarnings = [
# Upstream fix released in deepspeed v0.18.6: https://github.com/deepspeedai/DeepSpeed/releases/tag/v0.18.6
"ignore:`torch.jit.script_method` is deprecated:DeprecationWarning",
"ignore:`torch.jit.script` is deprecated:DeprecationWarning",
# On Python 3.14+ the same deprecation is reworded to "is not supported in Python 3.14+ and may break"
"ignore:`torch.jit.script_method` is not supported:DeprecationWarning",

# PyTorch DataLoader pin_memory device argument deprecations
# Triggered internally by torch.utils.data, not by our code
Expand Down
Loading