We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52364a commit 3409396Copy full SHA for 3409396
.github/workflows/build.yml
@@ -57,26 +57,9 @@ jobs:
57
with:
58
python-version: ${{ matrix.python-version }}
59
60
- - uses: actions/cache@v1
61
- id: depcache
62
- with:
63
- path: deps
64
- key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
65
-
66
- - name: Download dependencies
67
- if: steps.depcache.outputs.cache-hit != 'true'
68
- run: |
69
- pip download --dest=deps -r requirements.txt
70
71
- name: Install dependencies
72
run: |
73
- PYVER=`python -V 2>&1`
74
75
- if [ "${PYVER:0:-2}" == "Python 3.10" ]; then
76
- pip install -r requirements.txt
77
- else
78
- pip install -U --no-index --find-links=deps deps/*
79
- fi
+ pip install -r requirements.txt
80
81
- name: Run tests
82
0 commit comments