File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ description = "GDB-like Python Debugger in the Trepan family"
1515dependencies = [
1616 " columnize >= 0.3.10" ,
1717 " pyficache >= 2.5.0" ,
18- " xdis >= 6.1.5 ,<6.2.0 " ,
18+ " xdis > 6.1.6 ,<6.2.1 " ,
1919 " Pygments >= 2.2.0" ,
2020 " spark_parser >= 1.8.9, <1.9.2" ,
2121 " tracer > 1.9.0" ,
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 , 14 )):
8- mess = "Python Versions 3.0 to 3.13 are supported only in this package."
7+ if not ((3 , 1 ) <= SYS_VERSION < (3 , 16 )):
8+ mess = "Python Versions 3.0 to 3.15 are supported only in this package."
99 if (2 , 4 ) <= SYS_VERSION <= (2 , 7 ):
1010 mess += "\n For your Python, version %s, See trepan2" % sys .version [0 :3 ]
1111 elif SYS_VERSION < (2 , 4 ):
You can’t perform that action at this time.
0 commit comments