Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

Tests passed, but get this warning in Python 3.12 ``` /home/runner/work/datashader/datashader/datashader/datashape/lexer.py:20: DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead return ast.parse('u' + s).body[0].value.s...

Things I have done in this PR, other than upgrading to Python 3.12. - I have updated the test CI to align more with our other repos. - Don't use...

A MRE for the dask keys could be this: ``` python import dask.dataframe as dd import pandas as pd import numpy as np import datashader as ds df = pd.DataFrame(...

> you can optimise the DataFrame before extracting the graph, e.g. df = df.optimize() before you access the keys and the graph. This only works when it's an expression based...

There seem to be one other type of failing tests: ``` python import dask.dataframe as dd import pandas as pd import datashader as ds df = pd.DataFrame({"x": [0] * 5,...

I think the only test failing now is related to SpatialPandas Dask, which likely needs to be updated in spatialpandas itself. Because of this, the environment variable is needed for...

Have set over another run here: https://github.com/holoviz/panel/actions/runs/9130979122

The failing UI tests are because of this upstream issue: https://github.com/olifolkerd/tabulator/issues/4421 ``` python import panel as pn import pandas as pd pn.extension('tabulator') df = pd.DataFrame({'A': [1, 2, 3], 'B': [4,...

This is because pre-commit uses the latest version regardless if it is a pre-release. And this version right now creates a node_modules folder Can you try downgrading the version to...

Related issue: https://github.com/holoviz/holoviews/pull/6219