Re: [python-win32] pywin32 incompatible with Python 3.12

2024-02-07 Thread Mark Hammond
pywin32 is overdue a release, compounded by the fact I no longer have a Windows machine available. As noted in the readme, github actions to create "artifacts" on some pushes, so, eg, https://github.com/mhammond/pywin32/actions/runs/7713784334/artifacts/1206054711 will have a recent wheel for a

[python-win32] pywin32 incompatible with Python 3.12

2024-02-07 Thread Wuping Xin
Python 3.12 removed the module 'imp', but pyscript.py still relies on 'import imp' - this will lead to: ModuleNotFoundError: No module named 'imp' pyscript.py", line 213, in InitNew import imp ModuleNotFoundError: No module named 'imp' Solutions? Wuping ___