Skip to content

Commit

Permalink
Try pip with actions/setup-python@v2
Browse files Browse the repository at this point in the history
  • Loading branch information
chris2511 committed Apr 26, 2024
1 parent bb32e30 commit 4a54b09
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,13 @@ jobs:
runs-on: ${{matrix.runs}}

steps:
- name: Install Sphinx
run: pip3 install sphinx
- name: Install Python 3.10 and Sphinx
uses: actions/setup-python@v2
with:
python-version: "3.10"
run: |
python -m pip install --upgrade pip
pip install sphinx
- name: Install Qt
uses: jurplel/install-qt-action@v3
Expand Down

0 comments on commit 4a54b09

Please sign in to comment.