kevinjqliu opened a new issue, #949:
URL: https://github.com/apache/iceberg-python/issues/949

   ### Feature Request / Improvement
   
   When Pyiceberg upgrades its version, such as now from `0.6.1` -> `0.7.0`. 
The local repo will fail `test_version_format` until the library is reinstalled 
with the new version.
   
   Add explanation to 
[`test_version_format`](https://github.com/apache/iceberg-python/blob/d8bc1ca9af7957ce4d4db99a52c701ac75db7688/tests/test_version.py#L21)
 error message that the failure can be due to the Pyiceberg library version 
bump and possible solution such as to rerun `make install`.
   
   ```
   ================================================================== FAILURES 
==================================================================
   ____________________________________________________________ 
test_version_format 
_____________________________________________________________
   
       def test_version_format() -> None:
           from importlib import metadata
       
           installed_version = metadata.version("pyiceberg")
       
   >       assert (
               __version__ == installed_version
           ), f"{__version__} <> {installed_version}, the installed version 
does not match with the current codebase"
   E       AssertionError: 0.7.0 <> 0.6.1, the installed version does not match 
with the current codebase
   E       assert '0.7.0' == '0.6.1'
   E         - 0.6.1
   E         + 0.7.0
   
   tests/test_version.py:26: AssertionError
   ```


-- 
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.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

Reply via email to