Skip to content

Commit b8c61ff

Browse files
SStasclaude
andcommitted
Fix CI: remove Python 3.9, update extras to [dev] and [hf]
Python 3.9 dropped (requires-python >= 3.10). The [latent] extra was removed in the packaging refactor — [dev] already includes [hf] which provides torch + transformers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e973429 commit b8c61ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.10", "3.11", "3.12"]
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install -e ".[dev,latent]"
28+
pip install -e ".[dev]"
2929
3030
- name: Lint with ruff
3131
run: ruff check src/ tests/
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install dependencies
4747
run: |
4848
python -m pip install --upgrade pip
49-
pip install -e ".[latent]"
49+
pip install -e ".[hf]"
5050
5151
- name: Run quickstart example
5252
run: python examples/quickstart.py

0 commit comments

Comments
 (0)