You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** Problem **
2to3 has been deprecated for a while now and has not been compltely removed in 3.13.
Describe the enhancement
2to3 needs to be removed to be able to support python 3.13+. It seems to only be used to fix the import in the generated proto files.
I see 3 options :
Add compiled_proto to PYTHONPATH
Use sed to make the import relative
Create python script that converts the files (perhaps also create the files)
Edit:
Added 3rd option
The text was updated successfully, but these errors were encountered:
…to3 (AcademySoftwareFoundation#1557)
**Link the Issue(s) this Pull Request is related to.**
This is to fixAcademySoftwareFoundation#1555
**Summarize your change.**
Replaces 2to3 with a simple script that adds "from ." in front of pb2
imports.
This is done to support newer versions of python where 2to3 has been
removed.
** Problem **
2to3 has been deprecated for a while now and has not been compltely removed in 3.13.
Describe the enhancement
2to3 needs to be removed to be able to support python 3.13+. It seems to only be used to fix the import in the generated proto files.
I see 3 options :
compiled_proto
toPYTHONPATH
sed
to make the import relativeEdit:
Added 3rd option
The text was updated successfully, but these errors were encountered: