Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions python/metatomic_ase/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,13 @@ python_files = ["*.py"]
testpaths = ["tests"]
filterwarnings = [
"error",
# TorchScript deprecation warnings
"ignore:`torch.jit.script` is deprecated. Please switch to `torch.compile` or `torch.export`:DeprecationWarning",
"ignore:`torch.jit.script_method` is deprecated. Please switch to `torch.compile` or `torch.export`:DeprecationWarning",
"ignore:`torch.jit.save` is deprecated. Please switch to `torch.export`:DeprecationWarning",
"ignore:`torch.jit.load` is deprecated. Please switch to `torch.export`:DeprecationWarning",
# There is a circular dependency between metatomic-torch and vesin.metatomic
"ignore:.*vesin.metatomic was only tested with metatomic.torch >=0.1.3,<0.2.*:UserWarning",
# deprecation warning from vesin
"ignore:`compute_requested_neighbors_from_options` is deprecated and will be removed in a future version:UserWarning",
]
2 changes: 2 additions & 0 deletions python/metatomic_torchsim/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ filterwarnings = [
"ignore:`torch.jit.load` is not supported in Python 3.14+:DeprecationWarning",
# There is a circular dependency between metatomic-torch and vesin.metatomic
"ignore:.*vesin.metatomic was only tested with metatomic.torch >=0.1.3,<0.2.*:UserWarning",
# deprecation warning from vesin
"ignore:`compute_requested_neighbors_from_options` is deprecated and will be removed in a future version:UserWarning",
# This comes from inside TorchSim
"ignore:The 'nvalchemiops.neighborlist' module has been renamed to 'nvalchemiops.neighbors':DeprecationWarning",
]
Loading