8000 Set maximum supported version of Python as 3.13 (#144409) · pytorch/pytorch@8c03454 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8c03454

Browse files
pytorchbotatalman
andauthored
Set maximum supported version of Python as 3.13 (#144409)
Set maximum supported version of Python as 3.13 (#144396) Same as #119743 Required for Release 2.6.0 Pull Request resolved: #144396 Approved by: https://github.com/Skylion007, https://github.com/albanD, https://github.com/malfet (cherry picked from commit e14c36d) Co-authored-by: atalman <atalman@fb.com>
1 parent 7092dc5 commit 8c03454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ def main():
11661166
with open(os.path.join(cwd, "README.md"), encoding="utf-8") as f:
11671167
long_description = f.read()
11681168

1169-
version_range_max = max(sys.version_info[1], 12) + 1
1169+
version_range_max = max(sys.version_info[1], 13) + 1
11701170
torch_package_data = [
11711171
"py.typed",
11721172
"bin/*",

0 commit comments

Comments
 (0)
0