Fokko commented on code in PR #991: URL: https://github.com/apache/iceberg-python/pull/991#discussion_r1706101449
########## tests/test_version.py: ########## @@ -25,4 +25,8 @@ def test_version_format() -> None: assert ( __version__ == installed_version - ), f"{__version__} <> {installed_version}, the installed version does not match with the current codebase" + ), ( + 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. " + "Please ensure you have the latest version installed by rerunning `make install` command." + ) Review Comment: We can try to fix it like this: ```suggestion ) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org