dev-python/pyinstaller: Support python3.7.

Signed-off-by: Mike Auty <ikelos@gentoo.org>
This commit is contained in:
Mike Auty 2019-09-22 23:38:17 +01:00
parent eb6ce017fb
commit a00da72076
No known key found for this signature in database
GPG key ID: 0D129BD4062378F1

View file

@ -5,7 +5,7 @@ EAPI=5
# PyInstaller assumes CPython internals and is hence currently incompatible with
# alternative interpreters (e.g., PyPy).
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
# "waf" requires a threading-enabled Python interpreter.
PYTHON_REQ_USE='threads(+)'