cflavio / yorg

Yorg (Yorg's an Open Racing Game) is a free open source racing game developed by Ya2 using Panda3D for Windows, OSX and Linux.
Other
175 stars 33 forks source link

Creating AppImage on Ubuntu 22.04 fails #47

Open DeathByDenim opened 2 months ago

DeathByDenim commented 2 months ago

Hi there, it seems that "manylinux1" has become deprecated with Python 3.10 and it's now expecting manylinux2014 instead. This was fixed easily enough by replacing manylinux1 by manylinux2014 in the following files.

Presumably, this fixed Flatpak builds as well, but I didn't test that.

DeathByDenim commented 2 months ago

Oh, and it yyagl/dictfile.py, it should now be

from collections.abc import Mapping

instead of

from collections import Mapping