Set maximum supported version of Python as 3.13 (#144396)

Same as https://github.com/pytorch/pytorch/pull/119743 Required for Release 2.6.0
Pull Request resolved: https://github.com/pytorch/pytorch/pull/144396
Approved by: https://github.com/Skylion007, https://github.com/albanD, https://github.com/malfet
This commit is contained in:
atalman
2025-01-08 16:16:10 +00:00
committed by PyTorch MergeBot
parent 3068ce0337
commit e14c36d3f4

View File

@ -1166,7 +1166,7 @@ def main():
with open(os.path.join(cwd, "README.md"), encoding="utf-8") as f:
long_description = f.read()
version_range_max = max(sys.version_info[1], 12) + 1
version_range_max = max(sys.version_info[1], 13) + 1
torch_package_data = [
"py.typed",
"bin/*",