mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-25 19:55:49 +03:00
[GH-ISSUE #229] File "src\\gevent\\greenlet.py", line 906, in gevent._gevent_cgreenlet.Greenlet.run #207
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @thedtvn on GitHub (Jan 10, 2022).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/229
File "src\gevent\greenlet.py", line 906, in gevent.gevent_cgreenlet.Greenlet.run
File "C:\Users\duong\AppData\Local\Programs\Python\Python310\lib\site-packages\eel_init.py", line 259, in _process_message
return_val = _exposed_functionsmessage['name']
File "C:\Users\duong\AppData\Local\Programs\Python\Python310\lib\site-packages\auto_py_to_exe\ui.py", line 46, in initialise
'warnings': utils.get_warnings(),
File "C:\Users\duong\AppData\Local\Programs\Python\Python310\lib\site-packages\auto_py_to_exe\utils.py", line 84, in get_warnings
if sys.version_info.major == 3 and sys.version_info.minor == 10 and sys.version.micro == 0:
AttributeError: 'str' object has no attribute 'micro'
2022-01-10T03:37:23Z <Greenlet at 0x2e037e0c940: _process_message({'call': 1.1350934931941996, 'name': 'initialise',, <geventwebsocket.websocket.WebSocket object at 0x0)> failed with AttributeError
@elzyr commented on GitHub (Jan 10, 2022):
i have the same issue
@sanolt commented on GitHub (Jan 10, 2022):
Apparently it's a typo in the utils.py itself. Got the same error message, but could easily "repair" it by changing the variable to:
sys.version_info.micro == 0: in the file \AppData\Roaming\Python\Python310\site-packages\auto_py_to_exe\utils.py
The complete code black:
If Python 3.10.0 is being used, we are probably going to see
IndexError: tuple index out of range.@elzyr commented on GitHub (Jan 10, 2022):
hey, for me solution was in AppData\Local\Programs\Python\Python310\Lib\site-packages\auto_py_to_exe\utilits.py where i changed sys.version_info.minor == 0
@CRD716 commented on GitHub (Jan 10, 2022):
fixed by #230
@brentvollebregt commented on GitHub (Jan 11, 2022):
This should be fixed by #230 - thank you for raising this issue 👍