Skip to content

Commit

Permalink
Merge pull request #1257 from rtg0795/2.16
Browse files Browse the repository at this point in the history
Fix tensorflow  version for macos
  • Loading branch information
rtg0795 authored Mar 11, 2024
2 parents e0323aa + 37b7c8f commit 0f9f6df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oss_scripts/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ def finalize_options(self):
distclass=BinaryDistribution,
install_requires=[
(
'tensorflow>=2.16.0, <2.17; platform_machine != "arm64" or'
'tensorflow>=2.16.1, <2.17; platform_machine != "arm64" or'
' platform_system != "Darwin"'
),
(
'tensorflow-macos>=2.16.0, <2.17; platform_machine == "arm64" and'
'tensorflow-macos>=2.16.1, <2.17; platform_machine == "arm64" and'
' platform_system == "Darwin"'
),
],
Expand Down

0 comments on commit 0f9f6df

Please sign in to comment.