Skip to content

Commit 0cd2f87

Browse files
committed
workflows: run python 3.12 only on precommit ml ubuntu-latest os
1 parent e58bfad commit 0cd2f87

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/beam_PreCommit_Python_ML.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ jobs:
7272
# These tests will only execute on ubuntu-latest (GitHub-hosted).
7373
# Context: https://github.com/apache/beam/pull/35585.
7474
os: [[self-hosted, ubuntu-20.04, main], [ubuntu-latest]]
75+
exclude:
76+
# Temporary exclude Python 3.9, 3.10, 3.11 from ubuntu-latest. This
77+
# results in pip dependency resolution exceeded maximum depth issue.
78+
# Context: https://github.com/apache/beam/pull/35816.
79+
- python_version: '3.9'
80+
os: [ubuntu-latest]
81+
- python_version: '3.10'
82+
os: [ubuntu-latest]
83+
- python_version: '3.11'
84+
os: [ubuntu-latest]
7585
if: |
7686
github.event_name == 'push' ||
7787
github.event_name == 'pull_request_target' ||

0 commit comments

Comments
 (0)