You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
failing during compiling phase with: In file included from /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/MPI.c:4: /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/mpi4py.MPI.c: In function __pyx_tp_dealloc_6mpi4py_3MPI_Datatype: /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/mpi4py.MPI.c:154210:5: error: lvalue required as increment operand 154210 | ++Py_REFCNT(o);
this points to Python 3.10 usage as described here: https://gitlab.kitware.com/paraview/paraview/-/issues/21511
Even though the toolchain points to Python-3.9.5 (and is listed as dependency in the eb file)
The text was updated successfully, but these errors were encountered:
Python 3.10 is picked up from the base layer, and since this is the newest version, it is not dropped on finding the 3.9.5 dependency. This is fixed in the eb config file by pointing to the eb based / loaded python: # Python configopts += "-DVTK_WRAP_PYTHON=ON -DVTK_PYTHON_VERSION=3 -DVTK_PYTHON_OPTIONAL_LINK=OFF -DPython3_EXECUTABLE=$EBROOTPYTHON/bin/python3 "
PR for this is created: easybuilders/easybuild-easyconfigs#16741
failing during compiling phase with:
In file included from /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/MPI.c:4: /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/mpi4py.MPI.c: In function __pyx_tp_dealloc_6mpi4py_3MPI_Datatype: /home/hpcadmin/.local/easybuild/build/VTK/9.0.1/foss-2021a/VTK-9.0.1/ThirdParty/mpi4py/vtkmpi4py/src/mpi4py.MPI.c:154210:5: error: lvalue required as increment operand 154210 | ++Py_REFCNT(o);
this points to Python 3.10 usage as described here: https://gitlab.kitware.com/paraview/paraview/-/issues/21511
Even though the toolchain points to Python-3.9.5 (and is listed as dependency in the eb file)
The text was updated successfully, but these errors were encountered: