I just upgraded from Fedora 30 to Fedora 32. All my python stuff stopped working. The first problem was with
import gtk
I read that I should switch it to
from gi.repository import Gtk as gtk
from gi.repository import Gdk
But many many modules are not present. For example:
AttributeError: 'gi.repository.Gtk' object has no attribute 'combo_box_new_text'
AttributeError: 'gi.repository.Gtk' object has no attribute 'WINDOW_TOPLEVEL'
AttributeError: 'gi.repository.Gtk' object has no attribute 'settings_get_for_screen'
A huge mess.
How do I fix this?