Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update conf.py to use packaging to detect dev vs release versions #631

Merged
merged 5 commits into from
Mar 17, 2025
Merged
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
10 changes: 5 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
import napari
from napari._version import __version_tuple__

release = napari.__version__
if "dev" in release:
napari_version = parse_version(napari.__version__)
release = str(napari_version)
if napari_version.is_devrelease:
version = "dev"
else:
version = release

version = napari_version.base_version
# -- Project information -----------------------------------------------------

project = 'napari'
Expand Down Expand Up @@ -102,7 +102,7 @@
if version == "dev":
version_match = "dev"
else:
version_match = release
version_match = str(release)

html_theme_options = {
"external_links": [
Expand Down