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
autopytoexe does not work in python3.11 as autopytoexe imports getargspec from inspect module which was removed in python3.11
To Reproduce
Install python3.11
Run auto-py-to-exe from cli
auto-py-to-exe
Error:
Traceback (most recent call last):
File "$HOME/.local/bin/auto-py-to-exe", line 5, in <module>
from auto_py_to_exe.__main__ import run
File "$HOME/.local/lib/python3.11/site-packages/auto_py_to_exe/__main__.py", line 13, in <module>
from . import ui
File "$HOME/.local/lib/python3.11/site-packages/auto_py_to_exe/ui.py", line 6, in <module>
import eel
File "$HOME/.local/lib/python3.11/site-packages/eel/__init__.py", line 15, in <module>
import bottle as btl
File "/usr/lib/python3/dist-packages/bottle.py", line 44, in <module>
from inspect import getargspec
ImportError: cannot import name 'getargspec' from 'inspect' (/usr/lib/python3.11/inspect.py)
Expected behavior
Run perfectly fine
Your Environment:
Python version (python --version): 3.11.5
auto-py-to-exe version (pip show auto-py-to-exe): 2.42.0
PyInstaller version (pip show pyinstaller): 6.3.0
Eel version (pip show eel): 0.16.0
The text was updated successfully, but these errors were encountered:
👋 Hi, just a reminder that if you haven't read the help post yet, give it a read to see if your issue is covered in it and make sure to follow the debugging section.
Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help post, video or create a new discussion.
Quick Checks
Describe the bug
autopytoexe does not work in python3.11 as autopytoexe imports
getargspec
frominspect
module which was removed in python3.11To Reproduce
Error:
Expected behavior
Run perfectly fine
Your Environment:
python --version
): 3.11.5pip show auto-py-to-exe
): 2.42.0pip show pyinstaller
): 6.3.0pip show eel
): 0.16.0The text was updated successfully, but these errors were encountered: