Gtk3 on m1 mac with monterey

Hi – The following simple program gives a “Trace/BPT trap: 5” error when run on an M1 Mac with Monterey, using either python 2 or python 3. import gi gi.require_version("Gtk", "3.0") from gi.repository import Gtk w = Gtk.Window() It works properly (ie doesn’t crash) on an Intel Mac with Big Sur.…