[20:22] Hi :) [20:22] I try to make a package for my software and to upload it on launchpad ppa [20:23] but I have a build failure, I do not know how to solve it :( [20:23] https://launchpadlibrarian.net/464413386/buildlog_ubuntu-bionic-amd64.studmanager_0.2.1-3_BUILDING.txt.gz [20:25] the root cause seems to be: Can't exec "pyversions": No such file or directory at /usr/share/perl5/Debian/Debhelper/Buildsystem/python_distutils.pm line 121. [20:27] so I add the dependency to python-minimal as mentionned by sarnold on #ubuntu [20:30] lemoldu: if this package will build with python 2.7, i gues you could [20:31] my program is written with python3 [20:31] $ apt depends python-minimal [20:31] python-minimal [20:31] Depends: python2.7-minimal (>= 2.7.15~rc1-1~) [20:31] ... [20:31] but I think the build (on launchpad) is made with python2 [20:34] same result [20:34] https://launchpadlibrarian.net/464420968/buildlog_ubuntu-bionic-amd64.studmanager_0.2.1-4_BUILDING.txt.gz [20:35] dependencies seem to not be installed [20:36] right, there's no mention of pythong in the "build environment" block [20:36] *python [20:38] here is what I wrote in my control file [20:38] Depends: python3-pyqt5 (>=5.10.1), python3.6 (>=3.6.9), python-minimal (>=2.7.15) [20:43] i guess you can depend on both python3.6 and python-minimal(2.7) but they'll most likely not work with one another [20:43] but i'm really not qualified to guide, hope someone else can. [20:44] thank you tomreyn