Importing pyobvector 0.2.28 on Python 3.14 emits a SyntaxWarning because ob_vec_json_table_client.py returns from a finally block.
Reproduction:
.../site-packages/pyobvector/client/ob_vec_json_table_client.py:799: SyntaxWarning: return in a finally block
return n_new_records
This is non-fatal on the normal path, but a return in finally can suppress exceptions from the try block. It also makes CLIs that import the package appear broken. Please move the return after cleanup (or otherwise avoid returning from finally) and consider Python 3.14 in the compatibility matrix.
Importing pyobvector 0.2.28 on Python 3.14 emits a SyntaxWarning because ob_vec_json_table_client.py returns from a finally block.
Reproduction:
.../site-packages/pyobvector/client/ob_vec_json_table_client.py:799: SyntaxWarning: return in a finally block
return n_new_records
This is non-fatal on the normal path, but a return in finally can suppress exceptions from the try block. It also makes CLIs that import the package appear broken. Please move the return after cleanup (or otherwise avoid returning from finally) and consider Python 3.14 in the compatibility matrix.