flathub / org.frescobaldi.Frescobaldi

https://flathub.org/apps/details/org.frescobaldi.Frescobaldi
1 stars 3 forks source link

Test LilyPond autoinstallation PR #36

Closed fedelibre closed 1 year ago

fedelibre commented 1 year ago

https://github.com/frescobaldi/frescobaldi/pull/1655

flathubbot commented 1 year ago

Started test build 56892

flathubbot commented 1 year ago

Build 56892 failed

flathubbot commented 1 year ago

Started test build 56895

flathubbot commented 1 year ago

Build 56895 failed

fedelibre commented 1 year ago

Ooops, it seems I have to install tox:

/bin/sh: line 1: tox: command not found
jeanas commented 1 year ago

Yes, you should be able to install it with pip in the same way as python-ly.

flathubbot commented 1 year ago

Started test build 56928

jeanas commented 1 year ago

@fedelibre The entry you've added to install tox downloads it as an sdist, not a wheel, so pip will need to build the wheel from the sdist. This isn't going to work, as pip will try to download the build backend (hatchling in this case, judging from https://github.com/tox-dev/tox/blob/main/pyproject.toml), but Flatpak disables network access during the build. You should either install hatchling separately and add --no-build-isolation like for python-ly, or just download tox as a wheel directly (https://files.pythonhosted.org/packages/45/ff/a9e20a27e0f4dce205a1a93e4f15256315709a203cbf414fe8ee1dde85ef/tox-4.6.4-py3-none-any.whl).

flathubbot commented 1 year ago

Build 56928 failed

fedelibre commented 1 year ago

Closing in favour of #37