kivy / cymunk

Cython port of Pymunk
http://readthedocs.org/docs/cymunk/en/latest/
MIT License
45 stars 29 forks source link

Error when I try make. #36

Open edubrunaldi opened 8 years ago

edubrunaldi commented 8 years ago

After run

$ sudo python setup.py install

I try:

$ sudo make

And got this Error:

============================= test session starts ============================== platform linux -- Python 3.5.0, pytest-2.8.2, py-1.4.30, pluggy-0.3.1 rootdir: /home/edu/lib/cymunk, inifile: collected 2 items / 1 errors

tests/test_vec2d.py ..

==================================== ERRORS ==================================== ___ ERROR collecting tests/testspace.py ____ /usr/lib/python3.5/site-packages/_pytest/python.py:591: in _importtestmodule mod = self.fspath.pyimport(ensuresyspath=importmode) /usr/lib/python3.5/site-packages/py/_path/local.py:650: in pyimport import__(modname) E File "/home/edu/lib/cymunk/tests/test_space.py", line 23 E assert(space.collision_persistence == 3L) E ^ E SyntaxError: invalid syntax ====================== 2 passed, 1 error in 0.13 seconds ======================= Makefile:6: recipe for target 'tests' failed make: *\ [tests] Error 1

The ' ^ ' was pointing to 3L Anyone knows why i got this error?

Thank you.