-
Notifications
You must be signed in to change notification settings - Fork 990
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
cudf and cudf.pandas casting empty rows reading from csv files into the bool type is inconsistent with Pandas.
Steps/Code to reproduce bug
import pandas as pd
import cudf
t1 = pd.read_csv("t1.csv")
cudf_t1 = cudf.read_csv("t1.csv")
print("Pandas:")
result = t1['c0'].astype(bool)
print(result)
print("CuDF:")
result = cudf_t1['c0'].astype(bool)
print(result)t1.csv:
c0,c1
1,bb
0,aa
,ccPandas:
0 True
1 False
2 True
Name: c0, dtype: bool
CuDF:
0 True
1 False
2 <NA>
Name: c0, dtype: boolimport cudf.pandas
cudf.pandas.install()
import pandas as pd
t1 = pd.read_csv("t1.csv")
print("CuDF pandas:")
result = t1['c0'].astype(bool)
print(result)CuDF pandas:
0 True
1 False
2 <NA>
Name: c0, dtype: boolExpected behavior
It normally casts empty rows reading from csv files into the bool type just like Pandas does.
Environment overview (please complete the following information)
- Environment location: Bare-metal
- Method of cuDF install: conda
Environment details
Click here to see environment details
***OS Information***
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=24.04
DISTRIB_CODENAME=noble
DISTRIB_DESCRIPTION="Ubuntu 24.04 LTS"
PRETTY_NAME="Ubuntu 24.04 LTS"
NAME="Ubuntu"
VERSION_ID="24.04"
VERSION="24.04 LTS (Noble Numbat)"
VERSION_CODENAME=noble
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=noble
LOGO=ubuntu-logo
Linux rog 6.14.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Oct 14 13:55:17 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
***GPU Information***
Tue Nov 25 15:24:46 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 580.95.05 Driver Version: 580.95.05 CUDA Version: 13.0 |
+-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce RTX 4090 Off | 00000000:01:00.0 Off | Off |
| 37% 32C P8 39W / 450W | 517MiB / 24564MiB | 0% Default |
| | | N/A |
+-----------------------------------------+------------------------+----------------------+
+-----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| 0 N/A N/A 1564 G /usr/lib/xorg/Xorg 4MiB |
| 0 N/A N/A 19651 C+G ...c/gnome-remote-desktop-daemon 392MiB |
+-----------------------------------------------------------------------------------------+
***CPU***
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 39 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 16
On-line CPU(s) list: 0-15
Vendor ID: GenuineIntel
Model name: 11th Gen Intel(R) Core(TM) i7-11700 @ 2.50GHz
CPU family: 6
Model: 167
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
Stepping: 1
CPU(s) scaling MHz: 52%
CPU max MHz: 4900.0000
CPU min MHz: 800.0000
BogoMIPS: 4992.00
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb ssbd ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
L1d cache: 384 KiB (8 instances)
L1i cache: 256 KiB (8 instances)
L2 cache: 4 MiB (8 instances)
L3 cache: 16 MiB (1 instance)
NUMA node(s): 1
NUMA node0 CPU(s): 0-15
Vulnerability Gather data sampling: Vulnerable
Vulnerability Ghostwrite: Not affected
Vulnerability Indirect target selection: Mitigation; Aligned branch/return thunks
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Mitigation; Enhanced IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; PBRSB-eIBRS SW sequence; BHI SW loop, KVM SW loop
Vulnerability Srbds: Not affected
Vulnerability Tsa: Not affected
Vulnerability Tsx async abort: Not affected
Vulnerability Vmscape: Not affected
***CMake***
/usr/bin/cmake
cmake version 3.28.3
CMake suite maintained and supported by Kitware (kitware.com/cmake).
***g++***
/usr/bin/g++
g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
***nvcc***
/usr/bin/nvcc
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2023 NVIDIA Corporation
Built on Fri_Jan__6_16:45:21_PST_2023
Cuda compilation tools, release 12.0, V12.0.140
Build cuda_12.0.r12.0/compiler.32267302_0
***Python***
/xxx/bin/python
Python 3.10.19
***Environment Variables***
PATH : /xxx/anaconda3/envs/xx/bin:/xxx/anaconda3/condabin:/xxx/anaconda3/bin:/xxx/.vscode-server/cli/servers/Stable-ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/server/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/path/to/driver:/xxx/.vscode-server/extensions/ms-python.debugpy-2025.16.0-linux-x64/bundled/scripts/noConfigScripts
LD_LIBRARY_PATH :
NUMBAPRO_NVVM :
NUMBAPRO_LIBDEVICE :
CONDA_PREFIX : /xxx/anaconda3/envs/xx
PYTHON_PATH :
***conda packages***
/xxx/anaconda3/condabin/conda
# packages in environment at /xxx/anaconda3/envs/xx:
#
# Name Version Build Channel
_libgcc_mutex 0.1 main
_openmp_mutex 5.1 1_gnu
aiohappyeyeballs 2.6.1 pypi_0 pypi
aiohttp 3.13.2 pypi_0 pypi
aiosignal 1.4.0 pypi_0 pypi
annotated-doc 0.0.4 pypi_0 pypi
annotated-types 0.7.0 pypi_0 pypi
anyio 4.11.0 pypi_0 pypi
aplus 0.11.0 pypi_0 pypi
argon2-cffi 25.1.0 pypi_0 pypi
argon2-cffi-bindings 25.1.0 pypi_0 pypi
arrow 1.4.0 pypi_0 pypi
astropy 6.1.7 pypi_0 pypi
astropy-iers-data 0.2025.11.10.0.38.31 pypi_0 pypi
async-lru 2.0.5 pypi_0 pypi
async-timeout 4.0.3 pypi_0 pypi
attrs 25.4.0 pypi_0 pypi
babel 2.17.0 pypi_0 pypi
beautifulsoup4 4.14.2 pypi_0 pypi
blake3 1.0.8 pypi_0 pypi
bleach 6.3.0 pypi_0 pypi
bokeh 3.6.3 pypi_0 pypi
bqplot 0.12.45 pypi_0 pypi
branca 0.8.2 pypi_0 pypi
bzip2 1.0.8 h5eee18b_6
ca-certificates 2025.11.4 h06a4308_0
cachetools 6.2.2 pypi_0 pypi
certifi 2025.11.12 pypi_0 pypi
cffi 2.0.0 pypi_0 pypi
charset-normalizer 3.4.4 pypi_0 pypi
click 8.3.1 pypi_0 pypi
cloudpickle 3.1.2 pypi_0 pypi
colorcet 3.1.0 pypi_0 pypi
contourpy 1.3.2 pypi_0 pypi
cucim-cu12 25.10.0 pypi_0 pypi
cuda-bindings 12.9.4 pypi_0 pypi
cuda-core 0.3.2 pypi_0 pypi
cuda-pathfinder 1.3.2 pypi_0 pypi
cuda-python 12.9.4 pypi_0 pypi
cuda-toolkit 12.9.1 pypi_0 pypi
cudf-cu12 25.10.0 pypi_0 pypi
cugraph-cu12 25.10.1 pypi_0 pypi
cuml-cu12 25.10.0 pypi_0 pypi
cupy-cuda12x 13.6.0 pypi_0 pypi
cuvs-cu12 25.10.0 pypi_0 pypi
cuxfilter-cu12 25.10.0 pypi_0 pypi
cycler 0.12.1 pypi_0 pypi
dask 2025.11.0 pypi_0 pypi
dask-cuda 25.10.0 pypi_0 pypi
dask-cudf-cu12 25.10.0 pypi_0 pypi
dataclasses-json 0.6.7 pypi_0 pypi
dataframe-api-compat 0.2.7 pypi_0 pypi
datashader 0.18.2 pypi_0 pypi
defusedxml 0.7.1 pypi_0 pypi
distributed 2025.11.0 pypi_0 pypi
distributed-ucxx-cu12 0.46.0 pypi_0 pypi
distro 1.9.0 pypi_0 pypi
duckdb 1.4.2 pypi_0 pypi
expat 2.7.3 h3385a95_0
fastapi 0.121.3 pypi_0 pypi
fastjsonschema 2.21.2 pypi_0 pypi
fastrlock 0.8.3 pypi_0 pypi
filelock 3.20.0 pypi_0 pypi
fonttools 4.60.1 pypi_0 pypi
fqdn 1.5.1 pypi_0 pypi
frozendict 2.4.7 pypi_0 pypi
frozenlist 1.8.0 pypi_0 pypi
fsspec 2025.10.0 pypi_0 pypi
future 1.0.0 pypi_0 pypi
geopandas 1.1.1 pypi_0 pypi
greenlet 3.2.4 pypi_0 pypi
h11 0.16.0 pypi_0 pypi
h5py 3.15.1 pypi_0 pypi
holoviews 1.20.2 pypi_0 pypi
httpcore 1.0.9 pypi_0 pypi
httptools 0.7.1 pypi_0 pypi
httpx 0.28.1 pypi_0 pypi
httpx-sse 0.4.3 pypi_0 pypi
idna 3.11 pypi_0 pypi
imageio 2.37.2 pypi_0 pypi
importlib-metadata 8.7.0 pypi_0 pypi
ipydatawidgets 4.3.5 pypi_0 pypi
ipyleaflet 0.20.0 pypi_0 pypi
ipympl 0.9.8 pypi_0 pypi
ipyvolume 0.6.3 pypi_0 pypi
ipyvue 1.11.3 pypi_0 pypi
ipyvuetify 1.11.3 pypi_0 pypi
ipywebrtc 0.6.0 pypi_0 pypi
ipywidgets 8.1.8 pypi_0 pypi
isoduration 20.11.0 pypi_0 pypi
jinja2 3.1.6 pypi_0 pypi
jiter 0.12.0 pypi_0 pypi
joblib 1.5.2 pypi_0 pypi
json5 0.12.1 pypi_0 pypi
jsonpatch 1.33 pypi_0 pypi
jsonpointer 3.0.0 pypi_0 pypi
jsonschema 4.25.1 pypi_0 pypi
jsonschema-specifications 2025.9.1 pypi_0 pypi
jupyter 1.1.1 pypi_0 pypi
jupyter-console 6.6.3 pypi_0 pypi
jupyter-events 0.12.0 pypi_0 pypi
jupyter-leaflet 0.20.0 pypi_0 pypi
jupyter-lsp 2.3.0 pypi_0 pypi
jupyter-server 2.17.0 pypi_0 pypi
jupyter-server-proxy 4.4.0 pypi_0 pypi
jupyter-server-terminals 0.5.3 pypi_0 pypi
jupyterlab 4.5.0 pypi_0 pypi
jupyterlab-pygments 0.3.0 pypi_0 pypi
jupyterlab-server 2.28.0 pypi_0 pypi
jupyterlab-widgets 3.0.16 pypi_0 pypi
kiwisolver 1.4.9 pypi_0 pypi
langchain 0.3.27 pypi_0 pypi
langchain-community 0.3.29 pypi_0 pypi
langchain-core 0.3.76 pypi_0 pypi
langchain-openai 0.3.30 pypi_0 pypi
langchain-text-splitters 0.3.11 pypi_0 pypi
langgraph 1.0.3 pypi_0 pypi
langgraph-checkpoint 3.0.1 pypi_0 pypi
langgraph-prebuilt 1.0.5 pypi_0 pypi
langgraph-sdk 0.2.9 pypi_0 pypi
langsmith 0.4.46 pypi_0 pypi
lark 1.3.1 pypi_0 pypi
lazy-loader 0.4 pypi_0 pypi
ld_impl_linux-64 2.44 h153f514_2
libcudf-cu12 25.10.0 pypi_0 pypi
libcugraph-cu12 25.10.1 pypi_0 pypi
libcuml-cu12 25.10.0 pypi_0 pypi
libcuvs-cu12 25.10.0 pypi_0 pypi
libffi 3.4.4 h6a678d5_1
libgcc 15.2.0 h69a1729_7
libgcc-ng 15.2.0 h166f726_7
libgomp 15.2.0 h4751f2c_7
libkvikio-cu12 25.10.0 pypi_0 pypi
libnsl 2.0.0 h5eee18b_0
libraft-cu12 25.10.0 pypi_0 pypi
librmm-cu12 25.10.0 pypi_0 pypi
libstdcxx 15.2.0 h39759b7_7
libstdcxx-ng 15.2.0 hc03a8fd_7
libucx-cu12 1.19.0 pypi_0 pypi
libucxx-cu12 0.46.0 pypi_0 pypi
libuuid 1.41.5 h5eee18b_0
libxcb 1.17.0 h9b100fa_0
libzlib 1.3.1 hb25bd0a_0
linkify-it-py 2.0.3 pypi_0 pypi
llvmlite 0.44.0 pypi_0 pypi
locket 1.0.0 pypi_0 pypi
lz4 4.4.5 pypi_0 pypi
markdown 3.10 pypi_0 pypi
markdown-it-py 4.0.0 pypi_0 pypi
markupsafe 3.0.3 pypi_0 pypi
marshmallow 3.26.1 pypi_0 pypi
matplotlib 3.10.7 pypi_0 pypi
mdit-py-plugins 0.5.0 pypi_0 pypi
mdurl 0.1.2 pypi_0 pypi
mistune 3.1.4 pypi_0 pypi
modin 0.37.1 pypi_0 pypi
modin-spreadsheet 0.1.2 pypi_0 pypi
mpi4py 4.1.1 pypi_0 pypi
msgpack 1.1.2 pypi_0 pypi
multidict 6.7.0 pypi_0 pypi
multipledispatch 1.0.0 pypi_0 pypi
mypy-extensions 1.1.0 pypi_0 pypi
nbclient 0.10.2 pypi_0 pypi
nbconvert 7.16.6 pypi_0 pypi
nbformat 5.10.4 pypi_0 pypi
ncurses 6.5 h7934f7d_0
networkx 3.4.2 pypi_0 pypi
notebook 7.5.0 pypi_0 pypi
notebook-shim 0.2.4 pypi_0 pypi
numba 0.61.2 pypi_0 pypi
numba-cuda 0.19.1 pypi_0 pypi
numpy 1.26.4 pypi_0 pypi
nvidia-cublas-cu12 12.9.1.4 pypi_0 pypi
nvidia-cuda-cccl-cu12 12.9.27 pypi_0 pypi
nvidia-cuda-nvcc-cu12 12.9.86 pypi_0 pypi
nvidia-cuda-nvrtc-cu12 12.9.86 pypi_0 pypi
nvidia-cuda-runtime-cu12 12.9.79 pypi_0 pypi
nvidia-cufft-cu12 11.4.1.4 pypi_0 pypi
nvidia-curand-cu12 10.3.10.19 pypi_0 pypi
nvidia-cusolver-cu12 11.7.5.82 pypi_0 pypi
nvidia-cusparse-cu12 12.5.10.65 pypi_0 pypi
nvidia-ml-py 13.580.82 pypi_0 pypi
nvidia-nccl-cu12 2.28.9 pypi_0 pypi
nvidia-nvjitlink-cu12 12.9.86 pypi_0 pypi
nvtx 0.2.13 pypi_0 pypi
nx-cugraph-cu12 25.10.0 pypi_0 pypi
openai 1.109.1 pypi_0 pypi
openssl 3.0.18 hd6dcaed_0
orjson 3.11.4 pypi_0 pypi
ormsgpack 1.12.0 pypi_0 pypi
overrides 7.7.0 pypi_0 pypi
pandas 2.3.3 pypi_0 pypi
pandocfilters 1.5.1 pypi_0 pypi
panel 1.7.5 pypi_0 pypi
param 2.3.0 pypi_0 pypi
partd 1.4.2 pypi_0 pypi
pexpect 4.9.0 pypi_0 pypi
pillow 12.0.0 pypi_0 pypi
pip 25.3 pyhc872135_0
progressbar2 4.5.0 pypi_0 pypi
prometheus-client 0.23.1 pypi_0 pypi
propcache 0.4.1 pypi_0 pypi
protobuf 6.33.1 pypi_0 pypi
psutil 7.1.3 pypi_0 pypi
pthread-stubs 0.3 h0ce48e5_1
ptyprocess 0.7.0 pypi_0 pypi
pyarrow 22.0.0 pypi_0 pypi
pycparser 2.23 pypi_0 pypi
pyct 0.6.0 pypi_0 pypi
pydantic 2.12.4 pypi_0 pypi
pydantic-core 2.41.5 pypi_0 pypi
pydantic-settings 2.12.0 pypi_0 pypi
pyerfa 2.0.1.5 pypi_0 pypi
pygments 2.19.2 pypi_0 pypi
pylibcudf-cu12 25.10.0 pypi_0 pypi
pylibcugraph-cu12 25.10.1 pypi_0 pypi
pylibraft-cu12 25.10.0 pypi_0 pypi
pyogrio 0.11.1 pypi_0 pypi
pyparsing 3.2.5 pypi_0 pypi
pyproj 3.7.1 pypi_0 pypi
python 3.10.19 h6fa692b_0
python-dateutil 2.9.0.post0 pypi_0 pypi
python-dotenv 1.2.1 pypi_0 pypi
python-json-logger 4.0.0 pypi_0 pypi
python-utils 3.9.1 pypi_0 pypi
pythreejs 2.4.2 pypi_0 pypi
pytz 2025.2 pypi_0 pypi
pyviz-comms 3.0.6 pypi_0 pypi
pyyaml 6.0.3 pypi_0 pypi
raft-dask-cu12 25.10.0 pypi_0 pypi
rapids-dask-dependency 25.10.0 pypi_0 pypi
rapids-logger 0.1.19 pypi_0 pypi
ray 2.51.1 pypi_0 pypi
readline 8.3 hc2a1206_0
referencing 0.37.0 pypi_0 pypi
regex 2025.11.3 pypi_0 pypi
requests 2.32.5 pypi_0 pypi
requests-toolbelt 1.0.0 pypi_0 pypi
rfc3339-validator 0.1.4 pypi_0 pypi
rfc3986-validator 0.1.1 pypi_0 pypi
rfc3987-syntax 1.1.0 pypi_0 pypi
rich 14.2.0 pypi_0 pypi
rmm-cu12 25.10.0 pypi_0 pypi
rpds-py 0.29.0 pypi_0 pypi
scikit-image 0.25.2 pypi_0 pypi
scikit-learn 1.7.2 pypi_0 pypi
scipy 1.15.3 pypi_0 pypi
send2trash 1.8.3 pypi_0 pypi
setuptools 80.9.0 py310h06a4308_0
shapely 2.0.7 pypi_0 pypi
simpervisor 1.0.0 pypi_0 pypi
six 1.17.0 pypi_0 pypi
sniffio 1.3.1 pypi_0 pypi
sortedcontainers 2.4.0 pypi_0 pypi
soupsieve 2.8 pypi_0 pypi
sqlalchemy 2.0.44 pypi_0 pypi
sqlglot 28.0.0 pypi_0 pypi
sqlite 3.51.0 h2a70700_0
starlette 0.50.0 pypi_0 pypi
tabulate 0.9.0 pypi_0 pypi
tblib 3.2.2 pypi_0 pypi
tenacity 9.1.2 pypi_0 pypi
terminado 0.18.1 pypi_0 pypi
threadpoolctl 3.6.0 pypi_0 pypi
tifffile 2025.5.10 pypi_0 pypi
tiktoken 0.12.0 pypi_0 pypi
tinycss2 1.4.0 pypi_0 pypi
tk 8.6.15 h54e0aa7_0
tomli 2.3.0 pypi_0 pypi
toolz 1.1.0 pypi_0 pypi
tqdm 4.67.1 pypi_0 pypi
traittypes 0.2.3 pypi_0 pypi
treelite 4.4.1 pypi_0 pypi
typing-extensions 4.15.0 pypi_0 pypi
typing-inspect 0.9.0 pypi_0 pypi
typing-inspection 0.4.2 pypi_0 pypi
tzdata 2025.2 pypi_0 pypi
uc-micro-py 1.0.3 pypi_0 pypi
ucxx-cu12 0.46.0 pypi_0 pypi
unidist 0.7.2 pypi_0 pypi
uri-template 1.3.0 pypi_0 pypi
urllib3 2.5.0 pypi_0 pypi
uvicorn 0.38.0 pypi_0 pypi
uvloop 0.22.1 pypi_0 pypi
vaex 4.17.0 pypi_0 pypi
vaex-astro 0.9.3 pypi_0 pypi
vaex-core 4.17.1 pypi_0 pypi
vaex-hdf5 0.14.1 pypi_0 pypi
vaex-jupyter 0.8.2 pypi_0 pypi
vaex-ml 0.18.3 pypi_0 pypi
vaex-server 0.9.0 pypi_0 pypi
vaex-viz 0.5.4 pypi_0 pypi
watchfiles 1.1.1 pypi_0 pypi
webcolors 25.10.0 pypi_0 pypi
webencodings 0.5.1 pypi_0 pypi
websocket-client 1.9.0 pypi_0 pypi
websockets 15.0.1 pypi_0 pypi
wheel 0.45.1 py310h06a4308_0
widgetsnbextension 4.0.15 pypi_0 pypi
xarray 2025.6.1 pypi_0 pypi
xorg-libx11 1.8.12 h9b100fa_1
xorg-libxau 1.0.12 h9b100fa_0
xorg-libxdmcp 1.1.5 h9b100fa_0
xorg-xorgproto 2024.1 h5eee18b_1
xxhash 3.6.0 pypi_0 pypi
xyzservices 2025.10.0 pypi_0 pypi
xz 5.6.4 h5eee18b_1
yarl 1.22.0 pypi_0 pypi
zict 3.0.0 pypi_0 pypi
zipp 3.23.0 pypi_0 pypi
zlib 1.3.1 hb25bd0a_0
zstandard 0.25.0 pypi_0 pypi
Additional context
Add any other context about the problem here.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working