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
2 changes: 1 addition & 1 deletion openpiv/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# built documents.
#
# The short X.Y version.
version = '0.24.4a'
version = '0.25.4'
# The full version, including alpha/beta/rc tags.
# release = '0.0.1a'
Comment on lines +67 to 69
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

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

In Sphinx, version is intended to be the short X.Y string (as the comment above indicates) and release should carry the full version (including patch / pre-release tags). Setting version = '0.25.4' while leaving release commented out makes the config inconsistent and can lead to odd version display/templating; consider setting version = '0.25' and uncommenting/updating release = '0.25.4'.

Suggested change
version = '0.25.4'
# The full version, including alpha/beta/rc tags.
# release = '0.0.1a'
version = '0.25'
# The full version, including alpha/beta/rc tags.
release = '0.25.4'

Copilot uses AI. Check for mistakes.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "OpenPIV"
version = "0.25.3"
version = "0.25.4"
description = "OpenPIV consists in a Python and Cython modules for scripting and executing the analysis of a set of PIV image pairs. In addition, a Qt and Tk graphical user interfaces are in development, to ease the use for those users who don't have python skills."
authors = ["Alex Liberzon"]
license = "GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="OpenPIV",
version='0.25.3',
version='0.25.4',
packages=find_packages(),
include_package_data=True,
long_description=long_description,
Expand Down
Loading