Skip to content

Commit c3bab78

Browse files
committed
Merge branch 'main' into dev/build-py313
2 parents 134d281 + e89f896 commit c3bab78

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ jobs:
5252
python -m pytest --pyargs quantile_forest --cov=quantile_forest
5353
5454
- name: Upload coverage reports to Codecov
55-
uses: codecov/codecov-action@v4
55+
uses: codecov/codecov-action@v5
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Build wheels
22-
uses: pypa/cibuildwheel@v2.21.3
22+
uses: pypa/cibuildwheel@v2.22.0
2323
env:
2424
CIBW_BUILD: cp3*-*
2525
CIBW_SKIP: pp* *i686* *win32 *musllinux*

examples/plot_qrf_huggingface_inference.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def plot_quantiles_by_latlon(df, quantiles, color_scheme="lightgreyred"):
281281
alt.Chart(df)
282282
.add_params(quantile_val)
283283
.transform_calculate(quantile_col="'q_' + quantile")
284-
.transform_calculate(value=f"datum[datum.quantile_col]")
284+
.transform_calculate(value="datum[datum.quantile_col]")
285285
.mark_geoshape(stroke="black", strokeWidth=0.5)
286286
.encode(
287287
color=alt.Color(

0 commit comments

Comments
 (0)