From ca1887659c339d6b16e506e429031d21799d7341 Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Wed, 24 Jul 2024 21:16:11 +0100 Subject: [PATCH] Ignore spglib deprecationwarning --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ba314629e..414383487 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,9 @@ filterwarnings = [ '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