Just found this project and it looks very promising.
I am using the aggdraw module for one of my projects and I have fixed a couple bugs (path drawing) and added Python 3 support. You can find my version of aggdraw here.
I tried running a couple of your tests using python 3, but it looks like the code is still python 2 only (old style print statements, etc.). You might consider upgrading the code to be python-2 or 3 compatible. I found the modernize (aka python-modernize) package to be very useful for converting the files in my project, requiring only minimal fix ups afterwards. It uses the six module to achieve compatibility.
Just found this project and it looks very promising.
I am using the
aggdrawmodule for one of my projects and I have fixed a couple bugs (path drawing) and added Python 3 support. You can find my version ofaggdrawhere.I tried running a couple of your tests using python 3, but it looks like the code is still python 2 only (old style print statements, etc.). You might consider upgrading the code to be python-2 or 3 compatible. I found the
modernize(aka python-modernize) package to be very useful for converting the files in my project, requiring only minimal fix ups afterwards. It uses thesixmodule to achieve compatibility.