From 29509e29f6f33d947db77107c9dc9bab841be3c6 Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Wed, 24 Jul 2024 20:53:51 +0100 Subject: [PATCH] Ignore Cryptography Deprecation warning --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index a32a34198..ba314629e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ filterwarnings = [ # This warning is coming from circus (aiida-core dependency): # https://github.com/circus-tent/circus/issues/1215 "ignore:'pipes' is deprecated and slated for removal in Python 3.13:DeprecationWarning:", + "ignore::cryptography.utils.CryptographyDeprecationWarning:", ] [tool.ruff]