diff --git a/pyproject.toml b/pyproject.toml index ba314629e..abf2002ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,12 +16,15 @@ filterwarnings = [ "ignore:The default datetime adapter is deprecated as of Python 3.12; see the sqlite3 documentation for suggested replacement recipes:DeprecationWarning:", # This is needed since SQLAlchemy 2.0, see # https://github.com/aiidalab/aiidalab-widgets-base/issues/605 - 'ignore:Object of type .* not in session, .* operation along .* will not proceed:sqlalchemy.exc.SAWarning', + 'ignore:Object of type.*not in session,.*operation along.*will not proceed:sqlalchemy.exc.SAWarning', 'ignore::DeprecationWarning:bokeh', 'ignore:Creating AiiDA configuration:UserWarning:aiida', 'ignore:The `Code` class:aiida.common.warnings.AiidaDeprecationWarning:', 'ignore:crystal system:UserWarning:ase.io.cif', 'ignore::DeprecationWarning:ase.atoms', + # This popped up in spglib 2.5. Since we still try to support spglib v1, + # it's not clear if we can get rid of it. + "ignore:dict interface.*is deprecated.Use attribute interface:DeprecationWarning:spglib", # TODO: This comes from a transitive dependency of ipyoptimade # Remove this when this issue is addressed: # https://github.com/CasperWA/ipywidgets-extended/issues/85