dmeranda / demjson

Python module for JSON data encoding, including jsonlint. See the project Wiki here on Github. Also read the README at the bottom of this page, or the project homepage at
http://deron.meranda.us/python/demjson/
Other
302 stars 76 forks source link

wheels for demjson #18

Open srkunze opened 8 years ago

srkunze commented 8 years ago

Hi, do yo consider providing Python wheels for demjson? cf. http://pythonwheels.com/

dmeranda commented 8 years ago

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?

srkunze commented 8 years ago

Great to hear.

There is not pressing need for them from my side. The old way still works. :)

jayvdb commented 8 years ago

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.

srkunze commented 8 years ago

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. :)