Skip to content

Commit

Permalink
fix python version
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed Aug 16, 2024
1 parent 37c920d commit 780837b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/requirements-docs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
- name: Install yq
run: sudo snap install yq
- name: Get Python Version
id: get-py-version
id: get-version
run: |
python_version=$(cat .readthedocs.yaml | yq ".build.tools.python")
echo version=$python_version >> $GITHUB_OUTPUT
echo python-version=$python_version >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: get-py-version.version
python-version: '${{ steps.get-version.python-version }}'
- name: Update pip
run: pip install --upgrade pip
- name: Install Airflow and Dependencies
Expand Down

0 comments on commit 780837b

Please sign in to comment.