From 3a7c99c2faef5023fa6f77cf61d1ef932b70ffbe Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 9 Nov 2021 11:06:16 +0300 Subject: [PATCH] try to use pipx and inline pip tools installation --- .github/workflows/e2e-cache.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index 13d57cbc..5c455698 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -28,7 +28,7 @@ jobs: python-version: ${{ matrix.python-version }} cache: 'pip' - name: Install dependencies - run: pip install -r __tests__/data/requirements.txt + run: pip install numpy pandas requests python-pipenv-depencies-caching: name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install pipenv - run: pip install pipenv + run: pipx install pipenv - name: Setup Python uses: ./ with: @@ -67,7 +67,7 @@ jobs: cache: 'pip' cache-dependency-path: __tests__/data/requirements.txt - name: Install dependencies - run: pip install -r __tests__/data/requirements.txt + run: pip install numpy pandas requests python-pipenv-depencies-caching-path: name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) @@ -80,7 +80,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install pipenv - run: pip install pipenv + run: pipx install pipenv - name: Setup Python uses: ./ with: