Skip to content

Commit

Permalink
fix: pip cache
Browse files Browse the repository at this point in the history
  • Loading branch information
kx9x authored Dec 24, 2023
1 parent 6931b7d commit 3bfdd39
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/roboanimals-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,14 @@ jobs:
uses: actions/setup-python@main
with:
python-version: '3.10'
cache: pip

- name: Install python dependencies
run: |
pip install --force --no-cache-dir --upgrade pip setuptools
pip install --no-cache-dir wheel
pip install --no-cache-dir "cython<3.0" "pyyaml>=5.4.1,<6" --no-build-isolation
pip install --no-cache-dir -r requirements-dev.txt
pip install --force --upgrade pip setuptools
pip install wheel
pip install "cython<3.0" "pyyaml>=5.4.1,<6" --no-build-isolation
pip install -r requirements-dev.txt
- name: Edit .env file
env:
Expand Down

0 comments on commit 3bfdd39

Please sign in to comment.