Skip to content

Commit

Permalink
Fix python version used in venv
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeSeren committed Dec 15, 2023
1 parent 96b8581 commit 18fe60d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: '${{ matrix.python }}'
python-version: '${{ matrix.python-version }}'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
Expand Down

0 comments on commit 18fe60d

Please sign in to comment.