pmbootstrap.py: require at least python 3.7

The minimum python version was already increased to 3.7, but it wasn't
adjusted here yet.

Reviewed-by: Luca Weiss <luca@z3ntu.xyz>
Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230407233026.1712-2-ollieparanoid@postmarketos.org%3E
This commit is contained in:
Oliver Smith 2023-04-08 01:30:23 +02:00
parent 46b708295a
commit 49cd288078
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
# PYTHON_ARGCOMPLETE_OK
import sys
version = sys.version_info
if version < (3, 6):
print("You need at least Python 3.6 to run pmbootstrap")
if version < (3, 7):
print("You need at least Python 3.7 to run pmbootstrap")
print("(You are running it with Python " + str(version.major) +
"." + str(version.minor) + ")")
sys.exit()