Description
We should decide early on if we're going with python 2 or 3. As the project sits right now, (17901c8), it is fully compatible with both runtimes. The Makefile is set up to use python 2 but it could be easily changed.
My opinion: Python 2 is what more python developers are going to know, but python 3 is the future of the language and is worth learning. Python 3 has some valuable runtime and library improvements, but the differences aren't going to matter much for our use case (we don't really much care about advanced algorithms for a simple project like this). I would say use python 3 just because it is worth learning, but if more people are comfortable with python 2 that would be fine also.
@cpgillem what are your thoughts on this since you seem to be leading this project?
edit: worth noting that ubuntu comes with python 2 as the default python
Activity