Skip to content

Commit

Permalink
Use python rather than python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed May 13, 2024
1 parent 59df5f0 commit 7935d0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade setuptools wheel setuptools_scm
python3 -m pip install sphinx
python3 -m pip install ".[test,twisted,dev]"
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel setuptools_scm
python -m pip install sphinx
python -m pip install ".[test,twisted,dev]"
- name: Ruff
run: |
Expand Down

0 comments on commit 7935d0d

Please sign in to comment.