Skip to content

Commit

Permalink
Merge branch 'main' into dev/build-py313
Browse files Browse the repository at this point in the history
  • Loading branch information
reidjohnson committed Nov 27, 2024
2 parents 134d281 + e89f896 commit c3bab78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ jobs:
python -m pytest --pyargs quantile_forest --cov=quantile_forest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_BUILD: cp3*-*
CIBW_SKIP: pp* *i686* *win32 *musllinux*
Expand Down
2 changes: 1 addition & 1 deletion examples/plot_qrf_huggingface_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def plot_quantiles_by_latlon(df, quantiles, color_scheme="lightgreyred"):
alt.Chart(df)
.add_params(quantile_val)
.transform_calculate(quantile_col="'q_' + quantile")
.transform_calculate(value=f"datum[datum.quantile_col]")
.transform_calculate(value="datum[datum.quantile_col]")
.mark_geoshape(stroke="black", strokeWidth=0.5)
.encode(
color=alt.Color(
Expand Down

0 comments on commit c3bab78

Please sign in to comment.