On Tue, Feb 17, 2026 at 06:43:30PM +0100, Alois Schlögl wrote: > > The virtual environment was not created successfully because ensurepip is > > not > > available. On Debian/Ubuntu systems, you need to install the python3-venv > > package using the following command. > > > > apt install python3.14-venv > > > > > > I hope Andreas can fix this and complete the upload. > > > > (While I'm also a team member, I'm not confident enough yet to make > > uploads for new upstream releases). > > > > Thanks. > > Hello Santiago, > > I'm not proficient in debian packaging, but what I can say is that > ./configure && make && make install > is supposed to build biosig for python for all python versions found with > pyversions > py3versions > The is implemented in the top level Makefile.in of biosig. > > Could it be that the Debian package machinery in conflicting with this ?
It's not a conflict, it's just a missing build-dependency in the Debian package (so you as author do not have to worry about that). [ Debian packages are built in a clean environment, made of so-called "build-essential packages" which do not have to be declared, plus packages declared in the Build-Depends field in debian/control ]. The error message tell us that we need both python3.13-venv and python3.14-venv, but there is a dependency package which depends on both, called "python3-all-venv", so that's the best package to be added to Build-Depends. Thanks.

