forked from Mirror/pmbootstrap
Drop support for python3.7 and python3.8 (MR 2265)
Even Debian oldstable is on python3.9 now, so should be safe, and should also help the typing process that has now started
This commit is contained in:
parent
d895f4a465
commit
d2bcff3162
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ __version__ = "2.2.1"
|
|||
|
||||
# Python version check
|
||||
version = sys.version_info
|
||||
if version < (3, 7):
|
||||
print("You need at least Python 3.7 to run pmbootstrap")
|
||||
if version < (3, 9):
|
||||
print("You need at least Python 3.9 to run pmbootstrap")
|
||||
print("(You are running it with Python " + str(version.major) +
|
||||
"." + str(version.minor) + ")")
|
||||
sys.exit()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue