version: 1 AppDir: path: ./AppDir app_info: id: pyfa name: pyfa icon: pyfa version: '{{PYFA_VERSION}}' exec: usr/bin/python3.11 exec_args: "-s $APPDIR/opt/pyfa/pyfa.py $@" apt: arch: [ amd64 ] sources: - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy main restricted universe multiverse' key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-updates main restricted universe multiverse' key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse' key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb http://us.archive.ubuntu.com/ubuntu jammy-security main restricted universe multiverse' key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' - sourceline: 'deb https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy main' key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf23c5a6cf475977595c89f51ba6932366a755776' include: - python3.11 exclude: [] after_bundle: # Install python dependencies to bundled interpreter - export PYTHONHOME="AppDir/usr" - export PYTHONPATH="AppDir/usr/lib/python3.11/site-packages" - curl -L https://bootstrap.pypa.io/get-pip.py -o get-pip.py - python3.11 get-pip.py - python3.11 -s -m pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 -r requirements.txt runtime: env: PYTHONHOME: '${APPDIR}/usr' PYTHONPATH: '${APPDIR}/usr/lib/python3.11/site-packages' AppImage: sign-key: None arch: x86_64 file_name: 'pyfa-{{PYFA_VERSION}}-linux'