File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,8 @@ jobs:
232
232
id : min-version
233
233
run : |
234
234
poetry run pip install packaging
235
- min_versions="$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml release ${{ steps.setup-python.outputs.installed-python-version }})"
235
+ python_version="$(poetry run python --version | awk '{print $2}')"
236
+ min_versions="$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml release $python_version)"
236
237
echo "min-versions=$min_versions" >> "$GITHUB_OUTPUT"
237
238
echo "min-versions=$min_versions"
238
239
Original file line number Diff line number Diff line change 48
48
shell : bash
49
49
run : |
50
50
poetry run pip install packaging tomli
51
- echo "Python version ${{ steps.setup-python.outputs.installed-python-version }}"
52
51
python_version="$(poetry run python --version | awk '{print $2}')"
53
52
min_versions="$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml pull_request $python_version)"
54
53
echo "min-versions=$min_versions" >> "$GITHUB_OUTPUT"
You can’t perform that action at this time.
0 commit comments