8000 [EZ] Set maximum supported version of Python as 3.12 · pytorch/pytorch@c63c0ed · GitHub
[go: up one dir, main page]

Skip to content

Commit c63c0ed

Browse files
authored
[EZ] Set maximum supported version of Python as 3.12
Doesn't really affect anything other than metadata on PyPI website
1 parent ea8e4fd commit c63c0ed

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
@@ -1130,7 +1130,7 @@ def main():
11301130
with open(os.path.join(cwd, "README.md"), encoding="utf-8") as f:
11311131
long_description = f.read()
11321132

1133-
version_range_max = max(sys.version_info[1], 10) + 1
1133+
version_range_max = max(sys.version_info[1], 12) + 1
11341134
torch_package_data = [
11351135
"py.typed",
11361136
"bin/*",

0 commit comments

Comments
 (0)
0