Skip to content

Commit 920699c

Browse files
committed
Fix requirement paths.
1 parent bd97c8a commit 920699c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
with:
1616
python-version: "3.10"
1717
cache: pip
18-
cache-dependency-path: requirements/3.10.txt
18+
cache-dependency-path: requirements/ubuntu-latest-3.10.txt
1919
- name: Install Python dependencies
2020
run: |
2121
pip install --upgrade pip
22-
pip install -r requirements/3.10.txt
22+
pip install -r requirements/ubuntu-latest-3.10.txt
2323
- name: Build documentation
2424
run: make docs

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
python-version: ${{ matrix.runtime.python-version }}
5454
cache: pip
55-
cache-dependency-path: ${{ format('requirements/{0}.txt', matrix.python-version) }}
55+
cache-dependency-path: ${{ format('requirements/{0}-{1}.txt', matrix.runtime.machine, matrix.runtime.python-version) }}
5656
- name: Install Python dependencies
5757
run: |
5858
pip install --upgrade pip

0 commit comments

Comments
 (0)