dannycjones opened a new issue, #2720: URL: https://github.com/apache/iceberg-rust/issues/2720
This issue was found when validating 0.10.0-rc1. On Python 3.13, the tests error with `ResourceWarning: unclosed database` at session teardown. This is because the SqlCatalog (and its underlying sqlite3 connections) are never explicitly closed. Python 3.13 began reporting this error: https://docs.python.org/3.13/whatsnew/3.13.html#sqlite3 To reproduce: ```sh cd bindings/python uv venv --python 3.13 uv pip install -e "." --group dev uv run pytest tests/test_huggingface_and_cdc.py -k "not hf" ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
