Skip to content

Commit

Permalink
Fix Python version check in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez authored Jan 17, 2024
1 parent 891b7cc commit 27af097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Check for Python version
run: |
echo "install_python=$(python -c 'import sys; print(sys.version_info < (3, 9))'" >> $GITHUB_ENV
echo "install_python=$(python -c 'import sys; print(sys.version_info < (3, 9))')" >> $GITHUB_ENV
- name: Setup Python
uses: actions/setup-python@v2
Expand Down

0 comments on commit 27af097

Please sign in to comment.