Skip to content

Commit

Permalink
Upgrade python max version to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SWHL committed May 12, 2024
1 parent c5c2246 commit bf40c99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion python/setup_onnxruntime.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ def get_readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
Expand Down
3 changes: 2 additions & 1 deletion python/setup_openvino.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ def get_readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
Expand Down
3 changes: 2 additions & 1 deletion python/setup_paddle.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ def get_readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
Expand Down

0 comments on commit bf40c99

Please sign in to comment.