Add Python 3.8 and Python 3.9 to the fallback list (#73405)

This commit is contained in:
Matt Martz 2021-01-28 13:14:45 -06:00 committed by GitHub
parent 902c402b6f
commit c986cbb996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- Interpreter Discovery - Add Python 3.8 and Python 3.9 to the fallback list

View file

@ -1604,6 +1604,8 @@ INTERPRETER_PYTHON_FALLBACK:
name: Ordered list of Python interpreters to check for in discovery
default:
- /usr/bin/python
- python3.9
- python3.8
- python3.7
- python3.6
- python3.5