Skip to content

Commit

Permalink
Fix vegafusion test and update VegaFusion constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Mar 23, 2024
1 parent d843a1a commit 7feefd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ all = [
"vega_datasets>=0.9.0",
"vl-convert-python>=1.3.0",
"pyarrow>=11",
"vegafusion[embed]>=1.5.0",
"vegafusion[embed]>=1.6.6",
"anywidget>=0.9.0",
"altair_tiles>=0.3.0"
]
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_mimebundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def check_pre_transformed_vega_spec(vega_spec):

# Check that the bin transform has been applied
row0 = data_0["values"][0]
assert row0 == {"a": "A", "b": 28, "b_end": 28.0, "b_start": 0.0}
assert row0 == {"a": "A", "b_end": 28.0, "b_start": 0.0}

# And no transforms remain
assert len(data_0.get("transform", [])) == 0
Expand Down

0 comments on commit 7feefd5

Please sign in to comment.