Skip to content

Commit e32e676

Browse files
committed
Fix macos versions and pip caching
1 parent 021a111 commit e32e676

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
timeout-minutes: 5
1010
strategy:
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10']
1313
os: [ubuntu-latest, windows-latest, macOS-latest]
1414
exclude:
1515
- os: macOS-latest
16-
python-version: '3.6'
16+
python-version: ['3.8', '3.9', '3.10']
1717
- os: macOS-latest
1818
python-version: 'pypy3'
1919
fail-fast: false
@@ -23,6 +23,7 @@ jobs:
2323
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
cache: 'pip'
2627
architecture: x64
2728
- name: Install dependencies
2829
run: |

0 commit comments

Comments
 (0)