Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hatch options to match other packages #6291

Merged
merged 4 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
- id: check-json
- id: detect-private-key
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.9
rev: v0.4.10
hooks:
- id: ruff
files: holoviews/|scripts/
Expand Down
1 change: 1 addition & 0 deletions doc/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
--pst-color-primary: var(--holoviz-main-color);
--pst-color-secondary-highlight: var(--holoviz-main-color);
--pst-color-secondary: var(--holoviz-main-color);
--pst-violet-600: var(--holoviz-main-color); /* back to top hover */
--sd-color-card-border-hover: var(--holoviz-main-color);
}

Expand Down
5 changes: 0 additions & 5 deletions holoviews/tests/core/data/test_daskinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import numpy as np
import pandas as pd
import pytest
from packaging.version import Version

try:
Expand Down Expand Up @@ -166,7 +165,3 @@ def test_dataset_groupby(self):
def test_dataset_groupby_alias(self):
# Dask-expr unique sort the order when running unique on column
super().test_dataset_groupby_alias(sort=True)

@pytest.mark.xfail(reason="Not supported yet, see https://github.com/dask/dask-expr/issues/1076")
def test_multi_dimension_groupby(self):
super().test_multi_dimension_groupby()
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ holoviews = "holoviews.util.command:main"

[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }

[tool.hatch.build.targets.wheel]
include = ["holoviews"]

[tool.hatch.build.targets.sdist]
include = ["holoviews", "CHANGELOG.md"]
include = ["holoviews", "scripts"]

[tool.hatch.build.targets.sdist.force-include]
examples = "holoviews/examples"
Expand Down