Skip to content

Commit fcd15ae

Browse files
kocabiyikclaude
andcommitted
Fix CI: remove Python 3.8 from test matrix
Remove Python 3.8 from GitHub Actions test matrix to match package requirement of Python >=3.9. This resolves the CI error "Package 'withoutbg' requires a different Python: 3.8.18 not in '>=3.9'". 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent db10200 commit fcd15ae

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
15+
python-version: ['3.9', '3.10', '3.11', '3.12']
1616
exclude:
1717
# Reduce matrix for faster CI
18-
- os: windows-latest
19-
python-version: '3.8'
2018
- os: windows-latest
2119
python-version: '3.9'
22-
- os: macos-latest
23-
python-version: '3.8'
2420
- os: macos-latest
2521
python-version: '3.9'
2622

0 commit comments

Comments
 (0)