Skip to content

Commit 690f285

Browse files
committed
Update pyproject.toml
- Remove upper bound for tensorflow version is python version >=3.11 - add pip as required dependency
1 parent f5ce1a1 commit 690f285

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dependencies = [
3737
"opencv-python-headless>=4.5",
3838
"dlclibrary>=0.0.6",
3939
"scipy>=1.9",
40+
"pip",
4041
]
4142

4243
[project.optional-dependencies]
@@ -48,9 +49,9 @@ pytorch = [
4849

4950
tf = [
5051
"tensorflow>=2.7.0,<2.12; platform_system == 'Linux' and python_version < '3.11'",
51-
"tensorflow>=2.12.0,<2.13; platform_system == 'Linux' and python_version >= '3.11'",
52+
"tensorflow>=2.12.0; platform_system == 'Linux' and python_version >= '3.11'",
5253
"tensorflow-macos>=2.7.0,<2.12; platform_system == 'Darwin' and python_version < '3.11'",
53-
"tensorflow-macos>=2.12.0,<2.13; platform_system == 'Darwin' and python_version >= '3.11'",
54+
"tensorflow-macos>=2.12.0; platform_system == 'Darwin' and python_version >= '3.11'",
5455
# Tensorflow is not supported on Windows with Python >= 3.11
5556
"tensorflow>=2.7,<=2.10; platform_system == 'Windows' and python_version < '3.11'",
5657
"tensorflow-io-gcs-filesystem==0.27; platform_system == 'Windows' and python_version < '3.11'",

0 commit comments

Comments
 (0)