PlotPyStack / guidata

Python library generating graphical user interfaces for easy dataset editing and display
https://pypi.python.org/pypi/guidata
BSD 3-Clause "New" or "Revised" License
61 stars 18 forks source link

Guidata can not be installed on python 2.6 #42

Closed msmk0 closed 2 years ago

msmk0 commented 7 years ago

When trying to install guidata via pip install --user guidata with python 2.6, the installation breaks with the following error message:

File "/tmp/caribou/pip-build-6m1nnH/guidata/setup.py", line 151, in <module>
    % sys.version_info.major,]},
AttributeError: 'tuple' object has no attribute 'major'

The setup.py script uses the named accessor sys.version_info.major which is only accessible from python 2.7 onwards. However, the meta-data lists compatibility with python 2.6.

PierreRaybaut commented 2 years ago

Python 2.6 is no longer supported