File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 44from setuptools import find_packages , setup
55
66SYS_VERSION = sys .version_info [0 :2 ]
7- if not ((3 , 1 ) <= SYS_VERSION < (3 , 13 )):
8- mess = "Python Versions 3.1 to 3.12 are supported only in this package."
7+ if not ((3 , 1 ) <= SYS_VERSION < (3 , 14 )):
8+ mess = "Python Versions 3.1 to 3.13 are supported only in this package."
99 if (2 , 4 ) <= SYS_VERSION <= (2 , 7 ):
10- mess += "\n For your Python, version %s, See trepan2" % sys .version [0 :3 ]
10+ mess += f "\n For your Python, version { sys .version [0 :3 ]} , See trepan2"
1111 elif SYS_VERSION < (2 , 4 ):
12- mess += "\n For your Python, version %s, see pydb" % sys .version [0 :3 ]
12+ mess += f "\n For your Python, version { sys .version [0 :3 ]} , see pydb"
1313 print (mess )
1414 raise Exception (mess )
1515
You can’t perform that action at this time.
0 commit comments