Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
etianen committed Jan 15, 2024
1 parent 9a21e34 commit a9e08db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from datetime import date
from pathlib import Path

import tomllib
import tomli

_root = Path(__file__).parent.parent
_poetry = tomllib.loads((_root / "pyproject.toml").read_text())["tool"]["poetry"]
_poetry = tomli.loads((_root / "pyproject.toml").read_text())["tool"]["poetry"]

project = _poetry["name"]
release = version = _poetry["version"]
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ pytest = "*"
pytest-cov = "^4.1.0"
sphinx = "*"
sphinx-autobuild = "*"
tomli = "^2.0.1"

[tool.coverage.run]
source = ["logot", "tests"]
Expand Down

0 comments on commit a9e08db

Please sign in to comment.