This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm-repro-35816 in repository https://gitbox.apache.org/repos/asf/beam.git
commit 390fbfcd0c00848d8536ad67c13910aeaaa64134 Author: Mohamed Awnallah <mohamedmohey2...@gmail.com> AuthorDate: Sun Sep 7 18:53:57 2025 +0000 workflows: run python 3.12 only on precommit ml `ubuntu-latest` os --- .github/workflows/beam_PreCommit_Python_ML.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/beam_PreCommit_Python_ML.yml b/.github/workflows/beam_PreCommit_Python_ML.yml index e2d4ccafae5..471dcf953be 100644 --- a/.github/workflows/beam_PreCommit_Python_ML.yml +++ b/.github/workflows/beam_PreCommit_Python_ML.yml @@ -72,6 +72,16 @@ jobs: # These tests will only execute on ubuntu-latest (GitHub-hosted). # Context: https://github.com/apache/beam/pull/35585. os: [[self-hosted, ubuntu-20.04, main], [ubuntu-latest]] + exclude: + # Temporary exclude Python 3.9, 3.10, 3.11 from ubuntu-latest. This + # results in pip dependency resolution exceeded maximum depth issue. + # Context: https://github.com/apache/beam/pull/35816. + - python_version: '3.9' + os: [ubuntu-latest] + - python_version: '3.10' + os: [ubuntu-latest] + - python_version: '3.11' + os: [ubuntu-latest] if: | github.event_name == 'push' || github.event_name == 'pull_request_target' ||