mirror of
https://github.com/actions/setup-python.git
synced 2025-04-24 15:32:13 +00:00
try to use pipx and inline pip tools installation
This commit is contained in:
parent
0860a2dc2d
commit
3a7c99c2fa
1 changed files with 4 additions and 4 deletions
8
.github/workflows/e2e-cache.yml
vendored
8
.github/workflows/e2e-cache.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r __tests__/data/requirements.txt
|
run: pip install numpy pandas requests
|
||||||
|
|
||||||
python-pipenv-depencies-caching:
|
python-pipenv-depencies-caching:
|
||||||
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
||||||
|
@ -41,7 +41,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install pipenv
|
- name: Install pipenv
|
||||||
run: pip install pipenv
|
run: pipx install pipenv
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
@ -67,7 +67,7 @@ jobs:
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: __tests__/data/requirements.txt
|
cache-dependency-path: __tests__/data/requirements.txt
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r __tests__/data/requirements.txt
|
run: pip install numpy pandas requests
|
||||||
|
|
||||||
python-pipenv-depencies-caching-path:
|
python-pipenv-depencies-caching-path:
|
||||||
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
||||||
|
@ -80,7 +80,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install pipenv
|
- name: Install pipenv
|
||||||
run: pip install pipenv
|
run: pipx install pipenv
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Reference in a new issue