Skip to content

Commit

Permalink
try adding filter warnings to docs/conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
naik-aakash committed Jan 4, 2025
1 parent ae39300 commit a3a64b0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a3a64b0

Please sign in to comment.