From a3a64b00f4c02ed2f864c755453cb55393400dd7 Mon Sep 17 00:00:00 2001 From: naik-aakash Date: Sat, 4 Jan 2025 13:20:07 +0100 Subject: [PATCH] try adding filter warnings to docs/conf.py --- docs/conf.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 92c2dbb05..ea49b7b3a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,11 +10,18 @@ import os import sys +import warnings -from atomate2 import __version__ +from autoplex import __version__ sys.path.insert(0, os.path.abspath("../../")) +warnings.filterwarnings( + "ignore", + message=".*This function should have been removed.*", + category=DeprecationWarning, +) + # -- Project information ----------------------------------------------------- project = "autoplex"