Your message dated Fri, 24 Jul 2026 12:35:33 +0000
with message-id <[email protected]>
and subject line Bug#1140243: fixed in adios4dolfinx 0.10.0.post1-1
has caused the Debian Bug report #1140243,
regarding adios4dolfinx: FTBFS: E           ValueError: ERROR: variable 
entity_0_values can't be defined with an object with type <class 
'numpy.ndarray'>, in call to DefineVariable
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1140243: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1140243
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:adios4dolfinx
Version: 0.10.0.post0-4
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202606/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:adios4dolfinx, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --with python3 --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --with python3 --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:142: Building wheel for python3.14 with "build" 
module
I: pybuild base:385: python3.14 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_adios4dolfinx  
* Building wheel...
/usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py:82: 
SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated

[... snipped ...]


    def write_meshtags(
        filename: typing.Union[Path, str],
        mesh: dolfinx.mesh.Mesh,
        meshtags: dolfinx.mesh.MeshTags,
        engine: str = "BP4",
        meshtag_name: typing.Optional[str] = None,
    ):
        """
        Write meshtags associated with input mesh to file.
    
        .. note::
            For this checkpoint to work, the mesh must be written to file
            using :func:`write_mesh` before calling this function.
    
        Args:
            filename: Path to save meshtags (with file-extension)
            mesh: The mesh associated with the meshtags
            meshtags: The meshtags to write to file
            engine: Adios2 Engine
            meshtag_name: Name of the meshtag. If None, the meshtag name is 
used.
        """
        tag_entities = meshtags.indices
        dim = meshtags.dim
        num_tag_entities_local = mesh.topology.index_map(dim).size_local
        local_tag_entities = tag_entities[tag_entities < num_tag_entities_local]
        local_values = meshtags.values[: len(local_tag_entities)]
    
        num_saved_tag_entities = len(local_tag_entities)
        local_start = mesh.comm.exscan(num_saved_tag_entities, op=MPI.SUM)
        local_start = local_start if mesh.comm.rank != 0 else 0
        global_num_tag_entities = mesh.comm.allreduce(num_saved_tag_entities, 
op=MPI.SUM)
        dof_layout = mesh.geometry.cmap.create_dof_layout()
        num_dofs_per_entity = dof_layout.num_entity_closure_dofs(dim)
    
        entities_to_geometry = dolfinx.cpp.mesh.entities_to_geometry(
            mesh._cpp_object, dim, local_tag_entities, False
        )
    
        indices = 
mesh.geometry.index_map().local_to_global(entities_to_geometry.reshape(-1))
    
        name = meshtag_name or meshtags.name
    
        adios = adios2.ADIOS(mesh.comm)
        with ADIOSFile(
            adios=adios,
            filename=filename,
            mode=adios2.Mode.Append,
            engine=engine,
            io_name="MeshTagWriter",
        ) as adios_file:
            adios_file.file.BeginStep()
    
            # Write meshtag topology
            topology_var = adios_file.io.DefineVariable(
                name + "_topology",
                indices,
                shape=[global_num_tag_entities, num_dofs_per_entity],
                start=[local_start, 0],
                count=[num_saved_tag_entities, num_dofs_per_entity],
            )
            adios_file.file.Put(topology_var, indices, adios2.Mode.Sync)
    
            # Write meshtag topology
>           values_var = adios_file.io.DefineVariable(
                name + "_values",
                local_values,
                shape=[global_num_tag_entities],
                start=[local_start],
                count=[num_saved_tag_entities],
            )
E           ValueError: ERROR: variable entity_0_values can't be defined with 
an object with type <class 'numpy.ndarray'>, in call to DefineVariable

/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_adios4dolfinx/build/adios4dolfinx/checkpointing.py:243:
 ValueError
__ test_checkpointing_meshtags_3D[mesh_3D7-read_comm1-GhostMode.shared_facet] __

mesh_3D = <dolfinx.mesh.Mesh object at 0x7feae908a970>
read_comm = <mpi4py.MPI.Intracomm object at 0x7feb1db075a0>
read_mode = GhostMode.shared_facet
tmp_path = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_checkpointing_meshtags_3D31')

    @pytest.mark.parametrize("read_mode", read_modes)
    @pytest.mark.parametrize("read_comm", [MPI.COMM_SELF, MPI.COMM_WORLD])
    def test_checkpointing_meshtags_3D(mesh_3D, read_comm, read_mode, tmp_path):
        mesh = mesh_3D
        hash = 
f"{mesh.comm.size}_{mesh.topology.cell_name()}_{mesh.geometry.x.dtype}"
        fname = MPI.COMM_WORLD.bcast(tmp_path, root=0)
        filename = fname / f"meshtags_1D_{hash}.bp"
        if mesh.comm.size != 1:
            adios4dolfinx.write_mesh(filename, mesh, engine="BP4")
        else:
            if MPI.COMM_WORLD.rank == root:
                adios4dolfinx.write_mesh(filename, mesh, engine="BP4")
    
        org_maps = []
        for dim in range(mesh.topology.dim + 1):
            mesh.topology.create_connectivity(dim, mesh.topology.dim)
            e_map = mesh.topology.index_map(dim)
            num_entities_local = e_map.size_local
            entities = np.arange(num_entities_local, dtype=np.int32)
            ft = dolfinx.mesh.meshtags(mesh, dim, entities, 
e_map.local_range[0] + entities)
            ft.name = f"entity_{dim}"
    
            if mesh.comm.size != 1:
                adios4dolfinx.write_meshtags(filename, mesh, ft, engine="BP4")
                org_map = generate_reference_map(mesh, ft, mesh.comm, root)
                org_maps.append(org_map)
            else:
                if MPI.COMM_WORLD.rank == root:
>                   adios4dolfinx.write_meshtags(filename, mesh, ft, 
> engine="BP4")

/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_adios4dolfinx/build/tests/test_meshtags.py:254:
 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

filename = 
PosixPath('/tmp/pytest-of-sbuild/pytest-1/test_checkpointing_meshtags_3D31/meshtags_1D_1_hexahedron_float32.bp')
mesh = <dolfinx.mesh.Mesh object at 0x7feae908a970>
meshtags = <dolfinx.mesh.MeshTags object at 0x7feae9f095e0>, engine = 'BP4'
meshtag_name = None

    def write_meshtags(
        filename: typing.Union[Path, str],
        mesh: dolfinx.mesh.Mesh,
        meshtags: dolfinx.mesh.MeshTags,
        engine: str = "BP4",
        meshtag_name: typing.Optional[str] = None,
    ):
        """
        Write meshtags associated with input mesh to file.
    
        .. note::
            For this checkpoint to work, the mesh must be written to file
            using :func:`write_mesh` before calling this function.
    
        Args:
            filename: Path to save meshtags (with file-extension)
            mesh: The mesh associated with the meshtags
            meshtags: The meshtags to write to file
            engine: Adios2 Engine
            meshtag_name: Name of the meshtag. If None, the meshtag name is 
used.
        """
        tag_entities = meshtags.indices
        dim = meshtags.dim
        num_tag_entities_local = mesh.topology.index_map(dim).size_local
        local_tag_entities = tag_entities[tag_entities < num_tag_entities_local]
        local_values = meshtags.values[: len(local_tag_entities)]
    
        num_saved_tag_entities = len(local_tag_entities)
        local_start = mesh.comm.exscan(num_saved_tag_entities, op=MPI.SUM)
        local_start = local_start if mesh.comm.rank != 0 else 0
        global_num_tag_entities = mesh.comm.allreduce(num_saved_tag_entities, 
op=MPI.SUM)
        dof_layout = mesh.geometry.cmap.create_dof_layout()
        num_dofs_per_entity = dof_layout.num_entity_closure_dofs(dim)
    
        entities_to_geometry = dolfinx.cpp.mesh.entities_to_geometry(
            mesh._cpp_object, dim, local_tag_entities, False
        )
    
        indices = 
mesh.geometry.index_map().local_to_global(entities_to_geometry.reshape(-1))
    
        name = meshtag_name or meshtags.name
    
        adios = adios2.ADIOS(mesh.comm)
        with ADIOSFile(
            adios=adios,
            filename=filename,
            mode=adios2.Mode.Append,
            engine=engine,
            io_name="MeshTagWriter",
        ) as adios_file:
            adios_file.file.BeginStep()
    
            # Write meshtag topology
            topology_var = adios_file.io.DefineVariable(
                name + "_topology",
                indices,
                shape=[global_num_tag_entities, num_dofs_per_entity],
                start=[local_start, 0],
                count=[num_saved_tag_entities, num_dofs_per_entity],
            )
            adios_file.file.Put(topology_var, indices, adios2.Mode.Sync)
    
            # Write meshtag topology
>           values_var = adios_file.io.DefineVariable(
                name + "_values",
                local_values,
                shape=[global_num_tag_entities],
                start=[local_start],
                count=[num_saved_tag_entities],
            )
E           ValueError: ERROR: variable entity_0_values can't be defined with 
an object with type <class 'numpy.ndarray'>, in call to DefineVariable

/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_adios4dolfinx/build/adios4dolfinx/checkpointing.py:243:
 ValueError
=========================== short test summary info ============================
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D0-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D0-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D0-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D0-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D1-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D1-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D1-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D1-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D2-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D2-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D2-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D2-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D3-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D3-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D3-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_1D[mesh_1D3-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D0-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D0-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D0-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D0-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D1-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D1-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D1-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D1-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D2-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D2-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D2-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D2-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D3-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D3-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D3-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D3-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D4-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D4-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D4-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D4-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D5-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D5-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D5-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D5-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D6-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D6-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D6-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D6-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D7-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D7-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D7-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_2D[mesh_2D7-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D0-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D0-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D0-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D0-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D1-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D1-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D1-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D1-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D2-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D2-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D2-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D2-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D3-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D3-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D3-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D3-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D4-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D4-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D4-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D4-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D5-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D5-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D5-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D5-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D6-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D6-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D6-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D6-read_comm1-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D7-read_comm0-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D7-read_comm0-GhostMode.shared_facet]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D7-read_comm1-GhostMode.none]
FAILED 
tests/test_meshtags.py::test_checkpointing_meshtags_3D[mesh_3D7-read_comm1-GhostMode.shared_facet]
========== 80 failed, 922 passed, 5 skipped, 180 deselected in 14.40s ==========
E: pybuild pybuild:485: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_adios4dolfinx/build; python3.13 -m 
pytest -k "not test_original_checkpoint"
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" --parallel=2 returned exit code 13
make: *** [debian/rules:13: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit 
status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: adios4dolfinx
Source-Version: 0.10.0.post1-1
Done: Drew Parsons <[email protected]>

We believe that the bug you reported is fixed in the latest version of
adios4dolfinx, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons <[email protected]> (supplier of updated adios4dolfinx package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Fri, 24 Jul 2026 13:38:43 +0200
Source: adios4dolfinx
Architecture: source
Version: 0.10.0.post1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<[email protected]>
Changed-By: Drew Parsons <[email protected]>
Closes: 1124571 1140243
Changes:
 adios4dolfinx (0.10.0.post1-1) unstable; urgency=medium
 .
   * New upstream release
     - fixes meshtags with numpy 2.4. Closes: #1140243
   * debian/tests: drop MPI tests. These tests are not constructed to
     run with MPI. Closes: #1124571
   * Standards-Version: 4.7.4
Checksums-Sha1:
 680d1968f25a1201e8bf64ec1f079154ee44e7cd 2486 adios4dolfinx_0.10.0.post1-1.dsc
 ca26e8a9e99628a15f7dc107adb0929910f821f0 74584 
adios4dolfinx_0.10.0.post1.orig.tar.gz
 4f0c3f5089015521ed0a2c4789cf7c14ee8d641f 6196 
adios4dolfinx_0.10.0.post1-1.debian.tar.xz
 7dd52db05054606f9fd066962ce7227ac7116f9f 20532 
adios4dolfinx_0.10.0.post1-1_amd64.buildinfo
Checksums-Sha256:
 97f903790cba9ba738811f981f849f857d1c2fe71c1f0293dd7f4a258a64561a 2486 
adios4dolfinx_0.10.0.post1-1.dsc
 79d1b308c99dfe242d1a08e5ec512af1d645de432fa7affc7c11969ff9b78ff2 74584 
adios4dolfinx_0.10.0.post1.orig.tar.gz
 dcffa405c4ecfcde60c7b0c08ead9fb90f1b703e2a25b1212a1109a2bfab4f37 6196 
adios4dolfinx_0.10.0.post1-1.debian.tar.xz
 2afd599c590e560718b4641f880a69324d364e0fbc4f7541c621d01ea5eafd7d 20532 
adios4dolfinx_0.10.0.post1-1_amd64.buildinfo
Files:
 5b198d3f7be987d4e8b208de404acec4 2486 science optional 
adios4dolfinx_0.10.0.post1-1.dsc
 9f372e316ff1494b22865cee7766d0d2 74584 science optional 
adios4dolfinx_0.10.0.post1.orig.tar.gz
 478bfd3f12425e829d890eadb5175d31 6196 science optional 
adios4dolfinx_0.10.0.post1-1.debian.tar.xz
 dd51aba9536e6cd49403f5a8426a0372 20532 science optional 
adios4dolfinx_0.10.0.post1-1_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEI8mpPlhYGekSbQo2Vz7x5L1aAfoFAmpjWBsACgkQVz7x5L1a
Afohog/+LuD6uDWC+A2UM0viM3qdyp0oXT7THvWlDHP8g7KJP4qZglqqmEl3euaW
e01SgkFl1vCtO4s2pYEA8d8FZsG5osrm2PFvqZfJrFevi1F1em/Z7KFKSBBLQDMc
KoDUW65t5bxChZx123Ci3D3kaU6wlN47btYUq9bABkcFlnZoCMx1xHdRrxK4diwS
CyoEXvNTvq6Pjq/mrQ0VNwCOQVcbZcXwae6qVuVT1aeQx8SZUVQbQe3SJjWzWjui
YCrGE5wm7sG5OYY67msNtLIljLu8zdM3joVwF6fBOK89/vPlraEz0Lry2kd7T5Eq
0yTPYd47v/VfA5ZErSZ/ZKg+Xg2Aaa9HiZ8HZjwTM7T37Csq89EDt9bxtEOavEyU
D0Be7imKJSzvEHGu5WDxCPh+7Z2N2KK5TkIMho3vghlOU/7DlANMljtTd6R7vteb
sykFjI7N1qQ7t/PgX4YhQRFPBibe/ZDrFVHNyg8LKfQUOUMj1rXyLnMYmmLo4HHX
RhWYw2sf5XjxYg+fxNdZY8+m6HIHihQudST/v8HhVjv4RxbbTxcrUltr6w01J50f
ACYvaTLZeqh04mkx0zomEhM/pI+GBs9cPza0cKtU+6nq5aWmNWJ3DjrdPLtJECCO
tAYiftJ+mZ84Q3+syp9Pweh05pY5CTL5hU1F0xbXBElfXfjBjO4=
=fbon
-----END PGP SIGNATURE-----

Attachment: pgpffqaY6LMV6.pgp
Description: PGP signature


--- End Message ---

Reply via email to