Nicolas Linden
Nicolas Linden
Wouldn't the following : ```python import openmc import openmc.deplete res = openmc.deplete.Results.from_hdf5("depletion_results.h5") initial = res[0] materials = {} for mat in initial.index_mat.keys(): materials[mat] = initial.get_material(mat) ``` do basically what you...
I got the same error on a native Ubuntu 23.4 and another Ubuntu 20.4 machine. It seems like the reason is that PySide2 5.15.2.1 is not available for python3.11 and...
Here's a minimal Dockerfile I used to produce the wheel for python 3.13/ubuntu25.04, works great: ```dockerfile FROM ubuntu:25.04 RUN apt update -y \ && apt install -y python3 python-is-python3 python3-venv...