demjson
demjson copied to clipboard
wheels for demjson
Hi, do yo consider providing Python wheels for demjson? cf. http://pythonwheels.com/
I have not had time yet to consider updating the packaging method. I was planning on doing this either if a new release was issued (not planned yet) or when I had extra time; but currently there is no expected timeframe.
Is there a need for a wheel version at this time?
Great to hear.
There is not pressing need for them from my side. The old way still works. :)
Just noting that two 'pure python wheel' could be created -- one for Python 2 and another for Python 3.
A universal wheel isnt possible while 2to3
is used. And 2to3
is IMO a necessary evil if Python 3.2 needs to be supported.
Interesting. Didn't know that about 2to3.
I have one project with two wheels (for Python 2 and 3) myself. Just do python3 setup.py bdist_wheel
or python setup.py sdist bdist_wheel
. :)