Archived

This forum has been archived. Please start a new discussion on GitHub.

Platform detection on the Ice PyPI distribution

Currently on https://pypi.python.org/pypi/zeroc-ice/3.6.0 the setup.py file on line 49 uses:
elif platform == 'linux2':

This does not work for Python 3 as sys.platform only returns 'linux' and not 'linux2' or 'linux3' as described here: http://bugs.python.org/issue12326

Comments