Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "physiomotion4d"
version = "2026.05.8"
version = "2026.05.9"
description = "Medical imaging package for generating anatomic models in Omniverse with physiological motion from 4D medical images"
authors = [
{name = "Stephen R. Aylward", email = "saylward@nvidia.com"}
Expand Down Expand Up @@ -174,7 +174,7 @@ physiomotion4d-visualize-pca-modes = "physiomotion4d.cli.visualize_pca_modes:mai
where = ["src"]

[tool.bumpver]
current_version = "2026.05.8"
current_version = "2026.05.9"
version_pattern = "YYYY.0M.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = false
Expand Down
2 changes: 1 addition & 1 deletion src/physiomotion4d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- PhysioMotion4DBase: Base class with standardized logging and debug settings
"""

__version__ = "2026.05.8"
__version__ = "2026.05.9"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Use single quotes for __version__ string.

Line 20 uses double quotes in a Python string literal; repository guidelines require single quotes for strings.

Suggested fix
-__version__ = "2026.05.9"
+__version__ = '2026.05.9'

As per coding guidelines, "**/*.py: Use single quotes for strings; double quotes for docstrings".

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
__version__ = "2026.05.9"
__version__ = '2026.05.9'
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/physiomotion4d/__init__.py` at line 20, The __version__ module-level
constant currently uses double quotes; update the string literal for __version__
to use single quotes to comply with repository style (change __version__ =
"2026.05.9" to use single quotes around the version value).


import warnings as _warnings

Expand Down
Loading