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
2 changes: 1 addition & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def setup(app):
"metatomic": ("https://docs.metatensor.org/metatomic/latest/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"torch": ("https://pytorch.org/docs/stable/", None),
"ase": ("https://wiki.fysik.dtu.dk/ase/", None),
"ase": ("https://docs.ase-lib.org/", None),
}

html_theme = "furo"
Expand Down
2 changes: 2 additions & 0 deletions python/vesin/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,6 @@ filterwarnings = [
"ignore:`torch.jit.script` 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",
# from ASE
"ignore:Setting the shape on a NumPy array has been deprecated in NumPy 2.5:DeprecationWarning",
]
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ lint-folders = python setup.py
package = external
package_env = build-vesin

# this warning fires when collecting tests and seemingly can not be
# supressed by the code in pyproject.toml, so we add it as a CLI flag
test_args = -W "ignore:`torch.jit.script` is not supported in Python 3.14+ and may break:DeprecationWarning"
packaging_deps =
cmake
Expand Down