infra: poetry run min versions 2 (#17149)

This commit is contained in:
Erick Friis 2024-02-06 17:57:43 -08:00 committed by GitHub
parent 181a033226
commit 9710346095
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: