Skip to content

Commit 10a7027

Browse files
committed
Minimal support for Python 3.14
1 parent a500135 commit 10a7027

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description = "GDB-like Python Debugger in the Trepan family"
1515
dependencies = [
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",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from setuptools import find_packages, setup
55

66
SYS_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 += "\nFor your Python, version %s, See trepan2" % sys.version[0:3]
1111
elif SYS_VERSION < (2, 4):

0 commit comments

Comments
 (0)