Skip to content

Commit

Permalink
infra: poetry run min versions 2 (#17149)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Feb 7, 2024
1 parent 181a033 commit 9710346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,9 @@ jobs:

- name: Get minimum versions
id: check-version
run: echo "min-versions=$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml)" >> $GITHUB_OUTPUT
run: |
poetry run pip install packaging
echo "min-versions=$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml)" >> $GITHUB_OUTPUT
- name: Run unit tests with minimum dependency versions
env:
Expand Down

0 comments on commit 9710346

Please sign in to comment.