In some Python-based tutorials (mainly Nutils, FEniCS, and FEniCSx participants), we seem to be importing packages that are not directly used. For example:
- In
partitioned-heat-conduction-3d, the import dolfinx.mesh seems to be unused.
- In many codes, the
from mpi4py import MPI seems to be unused.
I guess that many of these originate from the codes that have been used as starting points. Removing any such unnecessary dependencies (also from the respective requirements.txt) would be nice.
Triggered by #714.
In some Python-based tutorials (mainly Nutils, FEniCS, and FEniCSx participants), we seem to be importing packages that are not directly used. For example:
partitioned-heat-conduction-3d, theimport dolfinx.meshseems to be unused.from mpi4py import MPIseems to be unused.I guess that many of these originate from the codes that have been used as starting points. Removing any such unnecessary dependencies (also from the respective
requirements.txt) would be nice.Triggered by #714.