Skip to content

Commit 1f8297f

Browse files
committed
working on library install issue
1 parent 73485ab commit 1f8297f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/testing.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,15 @@ jobs:
3939
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ matrix.python-version }}
42+
- name: Clear pip cache
43+
run: pip cache purge
44+
4245
- name: Install dependencies
43-
run: |
44-
python -m pip install --upgrade pip
45-
pip install -r requirements.txt --use-deprecated=legacy-resolver
46+
run: pip install --no-cache-dir -r requirements.txt
47+
# - name: Install dependencies
48+
# run: |
49+
# python -m pip install --upgrade pip
50+
# pip install -r requirements.txt --use-deprecated=legacy-resolver
4651
- name: Test with pytest
4752
run: |
4853
pip install pytest

0 commit comments

Comments
 (0)