File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
min_version = (3, 6)
27
27
if this_python < min_version:
28
28
message_parts = [
29
- "This script does not work on Python {}.{}".format(*this_python),
29
+ "This script does not work on Python {}.{}. ".format(*this_python),
30
30
"The minimum supported Python version is {}.{}.".format(*min_version),
31
31
"Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python),
32
32
]
Original file line number Diff line number Diff line change 26
26
min_version = (3, 7)
27
27
if this_python < min_version:
28
28
message_parts = [
29
- "This script does not work on Python {}.{}".format(*this_python),
29
+ "This script does not work on Python {}.{}. ".format(*this_python),
30
30
"The minimum supported Python version is {}.{}.".format(*min_version),
31
31
"Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python),
32
32
]
Original file line number Diff line number Diff line change 26
26
min_version = (3, 8)
27
27
if this_python < min_version:
28
28
message_parts = [
29
- "This script does not work on Python {}.{}".format(*this_python),
29
+ "This script does not work on Python {}.{}. ".format(*this_python),
30
30
"The minimum supported Python version is {}.{}.".format(*min_version),
31
31
"Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python),
32
32
]
Original file line number Diff line number Diff line change 26
26
min_version = {minimum_supported_version}
27
27
if this_python < min_version:
28
28
message_parts = [
29
- "This script does not work on Python {{}}.{{}}".format(*this_python),
29
+ "This script does not work on Python {{}}.{{}}. ".format(*this_python),
30
30
"The minimum supported Python version is {{}}.{{}}.".format(*min_version),
31
31
"Please use https://bootstrap.pypa.io/pip/{{}}.{{}}/get-pip.py instead.".format(*this_python),
32
32
]
You can’t perform that action at this time.
0 commit comments