This is an automated email from the ASF dual-hosted git repository. tvalentyn pushed a commit to branch tvalentyn-patch-7 in repository https://gitbox.apache.org/repos/asf/beam.git
commit 553f2d49e92d41b2d3b68f30fc30ccf5c924f24b Author: tvalentyn <[email protected]> AuthorDate: Tue May 13 12:00:08 2025 -0700 Update setup.py Correct the upper bound definition to make it strict. --- sdks/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 2b21d0463c9..be701081057 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -547,7 +547,7 @@ if __name__ == '__main__': # For more info, see # https://docs.google.com/document/d/1c84Gc-cZRCfrU8f7kWGsNR2o8oSRjCM-dGHO9KvPWPw/edit?usp=sharing 'torch': [ - 'torch<=1.13.0,<=2.0.0' + 'torch<=1.13.0,<2.1.0' ], 'tensorflow': [ 'tensorflow>=2.12rc1,<2.13'
