You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I have been working on packaging Gearhead for the AUR, I noticed that the modules in Gearhead like game and gears get installed directly to site-packages:
I think it should be possible to get setup.py to do this without reformatting all the modules; in this case I think that moving the game, pbge, and gears modules to py_modules instead of packages should do the trick. I will look into this.
To be honest, I haven't touched setup.py for GHC since the absolute beginning of development and have instead relied upon PyInstaller for distribution. It's probably a mess.
As I have been working on packaging Gearhead for the AUR, I noticed that the modules in Gearhead like
game
andgears
get installed directly to site-packages:Now when I install this package on my system, if I start the Python interpreter and do
import game
I get the Gearhead game module. 😄I think the way to fix this is to move all of the modules under an additional gearhead-caramel directory, like this:
The text was updated successfully, but these errors were encountered: