Skip to content

Commit

Permalink
Make sure, python 3 is used in github action
Browse files Browse the repository at this point in the history
macos runner used preinstalled 2.7 and did not find module pip.
  • Loading branch information
dekuenstle committed Feb 24, 2021
1 parent 3e3ace2 commit 0651089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: r-lib/actions/setup-r@v1
- name: Install package with dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install -e .[r_wrapper,tests,docs]
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 0651089

Please sign in to comment.