Skip to content
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
6 changes: 5 additions & 1 deletion python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@

import os
import subprocess
from importlib.metadata import version

__version__ = "1.6.1"
# Single-sourced from the [project] table in pyproject.toml, so the version is
# declared in exactly one place. Note the argument is the *distribution* name
# ("sbd-eigensolver"), not the import name ("sbd").
__version__ = version("sbd-eigensolver")

# ---------------------------------------------------------------------------
# Backend registry — eagerly load all available backends at import time.
Expand Down