cyberitsolutions / alloc-cli

A CLI that uses the alloc API
GNU Affero General Public License v3.0
1 stars 2 forks source link

Port to Python 3.x #8

Closed cjbayliss closed 5 years ago

cjbayliss commented 5 years ago

RHEL 8 will use Python 3.6 by default. Debian is planing to use Python 3.x as the default in the next stable release (slated for early 2019). Arch Linux and Fedora both use Python 3 as default. Ubuntu is not as clear (can't find definite info), but I think 18.04 uses Python 3 as default, at the very least 20.04 will have to use Python 3 as default because python2.7 is EOL'd in 2020: https://pythonclock.org/

cjbayliss commented 5 years ago

Once the port to python3 is done, make sure to remove:

from __future__ import print_function

And other __future__ functions.

cjbayliss commented 5 years ago

This issue has been resolved by PR #19 🙂