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
Throws the following error on import with the latest version of comtypes
`c) Microsoft Corporation. All rights reserved.
C:\Users\lain>python
Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun 6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import pybag
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\init.py", line 57, in
from .pydbg import DbgEng
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\pydbg.py", line 11, in
from .dbgeng.idebugclient import DebugClient
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\dbgeng\idebugclient.py", line 8, in
from .idebugcontrol import DebugControl
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\dbgeng\idebugcontrol.py", line 10, in
from comtypes import compointerbase
ImportError: cannot import name '_compointer_base' from 'comtypes' (C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\comtypes\init.py)
from pybag import *
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\init.py", line 57, in
from .pydbg import DbgEng
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\pydbg.py", line 11, in
from .dbgeng.idebugclient import DebugClient
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\dbgeng\idebugclient.py", line 8, in
from .idebugcontrol import DebugControl
File "C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\pybag\dbgeng\idebugcontrol.py", line 10, in
from comtypes import compointerbase
ImportError: cannot import name '_compointer_base' from 'comtypes' (C:\Users\lain\AppData\Local\Programs\Python\Python312\Lib\site-packages\comtypes\init.py)`
Throws the following error on import with the latest version of comtypes
`c) Microsoft Corporation. All rights reserved.
C:\Users\lain>python
Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun 6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Appears this was the breaking change
enthought/comtypes@cc6edaf
Works fine if we downgrade to 1.4.4
The text was updated successfully, but these errors were encountered: