I'm trying get PySFML working on Vista; I'm using the worm.py demo to test it.
However, trying it in 64-bit Python yields the following error:
>>> from PySFML import sf
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from PySFML import sf
ImportError: DLL load failed: %1 is not a valid Win32 application.
Trying it in 32-bit Python worked slightly better- the "PyWorm" menu came up, but when I selected any option from it, it crashed with a "pythonw.exe has stopped working"
I've set up PySFML the "traditional" way- putting the .dlls and the bindings into a folder in site-packages- which probably explains why 64-bit Python didn't work (packages not compiled for 64b)
I still don't know why the 32-bit version crashes, though. Any clues about what's wrong?