Skip to content

Commit

Permalink
Merge pull request #5187 from radarhere/python3
Browse files Browse the repository at this point in the history
Use python3 for GH Actions
  • Loading branch information
wiredfool committed Jan 7, 2021
2 parents 75cee40 + 2e5d7dd commit d1eccf8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
python-version: 3.8

- name: Build system information
run: python .github/workflows/system-info.py
run: python3 .github/workflows/system-info.py

- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U tox
python3 -m pip install -U pip
python3 -m pip install -U tox
- name: Lint
run: tox -e lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v2

- name: Build system information
run: python .github/workflows/system-info.py
run: python3 .github/workflows/system-info.py

- name: Set up QEMU
if: "matrix.qemu-arch"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
${{ matrix.os }}-${{ matrix.python-version }}-
- name: Build system information
run: python .github/workflows/system-info.py
run: python3 .github/workflows/system-info.py

- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
Expand Down

0 comments on commit d1eccf8

Please sign in to comment.