We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c716a89 commit 678faccCopy full SHA for 678facc
tests/test_version.py
@@ -23,6 +23,8 @@ def test_version_format() -> None:
23
24
installed_version = metadata.version("pyiceberg")
25
26
- assert (
27
- __version__ == installed_version
28
- ), f"{__version__} <> {installed_version}, the installed version does not match with the current codebase"
+ assert __version__ == installed_version, (
+ f"The installed version ({installed_version}) does not match the current codebase version ({__version__})."
+ "This failure could be due to a recent version bump in the Pyiceberg library. "
29
+ "Please ensure you have the latest version installed by rerunning `make install` command."
30
+ )
0 commit comments