Skip to content

Commit

Permalink
invoke pip from python when self-upgrading (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier authored Aug 7, 2020
1 parent a943140 commit ecd6ec0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
with:
python-version: "3.6"

- name: Upgrade and install additional system packages
run: pip install --upgrade pip setuptools virtualenv wheel
- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Upgrade or install additional system packages
run: pip install --upgrade setuptools virtualenv wheel

- name: Checkout repository
uses: actions/checkout@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ jobs:
with:
python-version: "3.6"

- name: Upgrade and install additional system packages
run: pip install --upgrade pip setuptools virtualenv wheel
- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Upgrade or install additional system packages
run: pip install --upgrade setuptools virtualenv wheel

- name: Checkout repository
uses: actions/checkout@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/publishable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ jobs:
with:
python-version: "3.6"

- name: Upgrade and install additional system packages
run: pip install --upgrade pip setuptools virtualenv wheel
- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Upgrade or install additional system packages
run: pip install --upgrade setuptools virtualenv wheel

- name: Checkout repository
uses: actions/checkout@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Upgrade and install additional system packages
run: pip install --upgrade pip setuptools virtualenv wheel
- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Upgrade or install additional system packages
run: pip install --upgrade setuptools virtualenv wheel

- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit ecd6ec0

Please sign in to comment.