Closed
Description
Python 3 is now 10 years old, certainly mature enough to be the first choice for new projects. In the case of Hack switching seems rather easy:
- call
python3
instead ofpython
in the scripts; - use
pip3
instead ofpip
; - drop the
from future ...
imports in the python scripts.
This could really be sufficient.