I am trying the latest 4.1.2 snapshots on a MacBook Air (M1 silicon) with an existing wxPython app.
If I install wxPython 4.1.1 from PyPi the app runs ok (in a venv).
If I install wxPython 4.1.2 from downloaded snapshot the app does not run.
If I run a python shell and try to import wx
I get errors (below).
Any ideas how to solve this?
Thanks, Brendan.
(venv3.10) brendan@XXX % python
Python 3.10.2 (v3.10.2:a58ebcc701, Jan 13 2022, 14:50:16) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/Brendan/XXX//venv3.10/lib/python3.10/site-packages/wx/__init__.py", line 17, in <module>
from wx.core import *
File "/Users/Brendan/XXX/venv3.10/lib/python3.10/site-packages/wx/core.py", line 12, in <module>
from ._core import *
ImportError: dynamic module does not define module export function (PyInit__core)