Skip to content

Commit

Permalink
Bump pip requirements on newer pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel committed Jan 6, 2025
1 parent 7ff58aa commit 58a0354
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions defaults-o2-dataflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,12 @@ overrides:
Python-modules-list:
env:
PIP_BASE_REQUIREMENTS: |
pip==21.3.1
setuptools==65.5.1
wheel==0.37.1
pip == 21.3.1; python_version < '3.12'
pip == 24.0; python_version >= '3.12'
setuptools == 65.5.1; python_version < '3.12'
setuptools == 70.0.0; python_version >= '3.12'
wheel == 0.37.1; python_version < '3.12'
wheel == 0.42.0; python_version >= '3.12'
PIP_REQUIREMENTS: ""
DataDistribution:
requires:
Expand Down

0 comments on commit 58a0354

Please sign in to comment.