Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/main.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from nomad.mkdocs import define_env # noqa: F401
from nomad_docs import define_env # noqa: F401
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@ dev = [
"pytest",
"ruff",
"structlog",
"mkdocs",
"nomad-docs>=0.1.3",
"mkdocs",
"mkdocs-material>=9.0",
"pymdown-extensions",
"mkdocs-click",
"mkdocs-macros-plugin>=1.0",
"pydantic>=2.0,<2.11"
"pydantic>=2.0,<2.11",
]

[tool.ruff]
Expand Down Expand Up @@ -106,6 +107,7 @@ select = [

ignore = [
"F403", # 'from module import *' used; unable to detect undefined names
"PLC0415", # `import` should be at the top-level of a file
]

fixable = ["ALL"]
Expand Down