Skip to content

Commit

Permalink
Merge branch 'branch-24.10' into miniforge
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice authored Sep 18, 2024
2 parents fd764e2 + 6981ae6 commit 55881be
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
# Explicitly specify the pyproject.toml at the repo root, not per-project.
args: ["--config", "pyproject.toml"]
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
args: ["--config=.flake8"]
Expand Down
1 change: 1 addition & 0 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ channels:
- nvidia
dependencies:
- bokeh>=3.1
- bokeh_sampledata
- cuda-version=11.8
- cudatoolkit
- cudf==24.10.*,>=0.0.0a0
Expand Down
1 change: 1 addition & 0 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ channels:
- nvidia
dependencies:
- bokeh>=3.1
- bokeh_sampledata
- cuda-version=12.5
- cudf==24.10.*,>=0.0.0a0
- cugraph==24.10.*,>=0.0.0a0
Expand Down
2 changes: 2 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ dependencies:
common:
- output_types: [conda, requirements]
packages:
- bokeh_sampledata
- ipykernel
- ipython
- jupyter_sphinx
Expand All @@ -153,6 +154,7 @@ dependencies:
common:
- output_types: [conda, requirements]
packages:
- bokeh_sampledata
- ipython
- notebook>=0.5.0
- output_types: [conda]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def name(self):
chart_type = self.chart_type if self.chart_type else "chart"
return (
f"{self.x}_{self.y}"
f"{'_'+self.aggregate_col if self.aggregate_col else ''}"
f"{'_'+self.aggregate_fn if self.aggregate_fn else ''}"
f"{'_' + self.aggregate_col if self.aggregate_col else ''}"
f"{'_' + self.aggregate_fn if self.aggregate_fn else ''}"
f"_{chart_type}_{self.title}"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class BaseStackedLine(BaseChart):
y_range: Tuple = None
use_data_tiles = False
y: list = []
colors: list = []
default_colors = ["#8735fb"]
box_selected_range = None

Expand Down
2 changes: 1 addition & 1 deletion python/cuxfilter/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def _generate_query_str(self, query_dict=None, ignore_chart=""):

# extract string queries from query_dict,
# as self.query_dict also contains cudf.Series indices
str_queries_list = [x for x in query_dict.values() if type(x) == str]
str_queries_list = [x for x in query_dict.values() if type(x) is str]
return_query_str = " and ".join(str_queries_list)

# adding the popped value to the query_str_dict again
Expand Down

0 comments on commit 55881be

Please sign in to comment.