Skip to content

Commit

Permalink
Fix docs nox session and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lkubb committed Oct 18, 2024
1 parent 57d9f8b commit 3dc6d92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Changelog
Fixed
~~~~~

- Dropped dependency pinning to allow installation with Python >3.10 (#1)
- Dropped dependency pinning to allow installation with Python >3.10 (`#1 <https://github.com/lkubb/dooti/issues/1>`__)


0.2.1 (2022-11-09)
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def docs(session):
"""
Build Docs
"""
_install(session, ".[docs]")
_install(session, "-e", ".[docs]")
os.chdir("docs/")
session.run("make", "clean", external=True)
session.run("make", "linkcheck", "SPHINXOPTS=-W", external=True)
Expand All @@ -50,7 +50,7 @@ def docs_dev(session):
"""
Rebuild docs on changes (live preview).
"""
_install(session, ".[docs,docsauto]")
_install(session, "-e", ".[docs,docsauto]")
build_dir = Path("docs", "_build", "html")

# Allow specifying sphinx-autobuild options, like --host.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ filename = "CHANGELOG.rst"
directory = "changelog/"
title_format = "{version} ({project_date})"
underlines = ["-", "~", "^"]
issue_format = "`#{issue} <https://github.com/lkubb/dooti/issues/{issue}>`__"

[[tool.towncrier.type]]
directory = "removed"
Expand Down

0 comments on commit 3dc6d92

Please sign in to comment.