Fix doc settings.

This commit is contained in:
felix
2023-11-02 12:16:57 +01:00
parent 7e92a4beb3
commit 7acbdb9d16
4 changed files with 4 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ build-and-publish: build publish ## Build and publish.
.PHONY: docs-test
docs-test: ## Test if documentation can be built without warnings or errors
@poetry run sphinx docs/ docs/_build -W
@poetry run python3 -m sphinx docs/ docs/_build -W
.PHONY: docs
docs: ## Build and serve the documentation

View File

@@ -1,7 +1,7 @@
"""Sphinx configuration."""
project = "glue"
project = "Heisskleber"
author = "Felix Weiler"
copyright = f"2023, {author}"

View File

@@ -5,5 +5,5 @@ Reference
package 1
-------------
.. automodule:: glue
.. automodule:: heisskleber
:members:

View File

@@ -2,6 +2,6 @@
import heisskleber
def test_glue_version() -> None:
def test_heisskleber_version() -> None:
"""Test that the glue version is correct."""
assert heisskleber.__version__ == "0.1.0"