File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,14 +43,15 @@ jobs:
4343 # Look to see if there is a cache hit for the corresponding requirements file
4444 key : ${{ matrix.platform }}-${{ matrix.python }}-pyproject.toml-${{ hashFiles('pyproject.toml') }}
4545 restore-keys : |
46- ${{ runner.os }}-${{ matrix.python }}-pyproject.toml-${{hashFiles('pyproject.toml')}}}
46+ ${{ matrix.platform }}-${{ matrix.python }}-pyproject.toml-${{hashFiles('pyproject.toml')}}}
4747
4848 - name : Install Python dependencies
4949 run : |
5050 sudo apt-get install -y python-setuptools python3-setuptools
5151 pip install poetry
5252 poetry config virtualenvs.create false
53- poetry install
53+ poetry export --dev --without-hashes -o requirements-${{matrix.platform}}-${{matrix.python}}.txt
54+ pip install -r requirements-${{matrix.platform}}-${{matrix.python}}.txt
5455
5556 - name : Cache Redis
5657 id : cache-redis
You can’t perform that action at this time.
0 commit comments