planetarypy / pdsview

Python PDS Image Viewer
BSD 3-Clause "New" or "Revised" License
13 stars 7 forks source link

Fix Python version compatibility - add 2.6 and 3.4 #18

Closed godber closed 9 years ago

godber commented 9 years ago

We need to maintain compatibility with Python 2.6 and 3.4 (and 3.3, but at lower priority). This means, first and foremost that the code should run in these environments. Second that both tox and travis are configured to test these environments. This is a bit messy for this package because it has low level dependencies that we resolve with conda in travis. It's still achievable.

percurnicus commented 9 years ago

pdsview has 3.4 compatibility in https://github.com/planetarypy/pdsview/pull/21. Due to constraints in Travis/PySide this cannot be tested in Travis. However, tests pass on make test-all/tox so there is 3.4 compatibility. Ginga does not have 2.6 compatibility so 2.6 compatibility is not possible

godber commented 9 years ago

Great!