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"