Skip to content

Commit

Permalink
Limit typing_extensions to less than 4.6.0 until it works
Browse files Browse the repository at this point in the history
There is a unit test failure when run as a pip test with
typing_extensions >= 4.6.0 so limit the installed version to
below that until the issue is resolved.
  • Loading branch information
elfringham committed Jun 12, 2023
1 parent d82420a commit 496730b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def standard_or_nightly(standard, nightly):
'setuptools',
'six >= 1.12.0',
'termcolor >= 1.1.0',
'typing_extensions >= 3.6.6',
'typing_extensions>=3.6.6,<4.6.0',
# TODO(b/266362323): wrapt==1.15.0rc0 incompatible with TF 2.12.0 RC0 (and
# nightly, but works with TF 2.11)
'wrapt >= 1.11.0, <1.15',
Expand Down

0 comments on commit 496730b

Please sign in to comment.