Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BF: Fix attempting to delete frame local symbol table variable
Fix attempting to delete frame local symbol table variable: starting Python 3.13 attempting to delete local variables is not allowed. Fixes: ``` > del values['self'] E TypeError: cannot remove variables from FrameLocalsProxy ../../BUILDROOT/usr/lib64/python3.13/site-packages/dipy/workflows/multi_io.py:177: TypeError ``` Documentation: https://docs.python.org/3.13/whatsnew/3.13.html#defined-mutation-semantics-for-locals https://peps.python.org/pep-0667/
- Loading branch information