Skip to content

Commit 82ab993

Browse files
committed
Rework deps a bit.
1 parent a01b2d0 commit 82ab993

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/publish_testpypi.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: uv python pin ${{ matrix.python_v }}
3333
if: ${{ matrix.python_v != '' }}
3434
# don't modify sync file! messes up version!
35-
- run: uv sync --all-extras --frozen # does order matter?
35+
- run: uv sync --all-groups --all-extras --frozen # does order matter?
3636
- run: uv build
3737
- name: Reinstall from wheel
3838
run: >
@@ -56,7 +56,6 @@ jobs:
5656
- name: Test mocker pickles
5757
run: >
5858
uv run
59-
--with zstandard
6059
--no-sync kaleido_mocker
6160
--logistro-level INFO
6261
--n 1

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
uv sync
3030
--no-sources
3131
--all-extras
32+
--all-groups
3233
3334
- name: Install google-chrome-for-testing
3435
run: uv run --no-sync kaleido_get_chrome -v
@@ -44,7 +45,6 @@ jobs:
4445
- name: Test mocker pickles
4546
run: >
4647
uv run
47-
--with zstandard
4848
--no-sync kaleido_mocker
4949
--logistro-level INFO
5050
--n 1

src/py/kaleido/mocker/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def load_figures_from_paths(paths: list[Path]) -> Generator[FigureDict, Any, Any
5959
elif path.suffixes[-2:] == [".pkl", ".zst"]:
6060
if not dctx:
6161
raise RuntimeError(
62-
"Decompressing pickles requires zstandard optional dep.",
62+
"Decompressing pickles requires `pickles` optional dep-group.",
6363
)
6464
with path.open("rb") as file:
6565
binary = dctx.decompress(file.read())

0 commit comments

Comments
 (0)