Cython in PyWeek

Is it allowed in PyWeek If I write compiled Cython code for some parts of Python code? Would I need to compile for every platform when distributing the game or just compiling for windows is enough? Please bear with me, I'm new to such competitions.

(log in to comment)

Comments

Sure you can use cython but you'd want to provide good instructions for compiling it and a binary for Windows would be a very good idea as very few people have the build tools on Windows.
Cool. I'll distribute the binary for windows along with sources (*.pyx) for non-window users.