Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI/Linux: Build AppImage on Ubuntu 22.04 (Python 3.10) #423

Merged
merged 3 commits into from
Jan 22, 2024

Commits on Jan 22, 2024

  1. linux/appimage: generate byte-code files and package them

    This makes the app start slightly faster, as byte-code files won't need
    to be generated every time users run the app.
    
    https://docs.python.org/3.10/library/compileall.html
    guihkx committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    9921373 View commit details
    Browse the repository at this point in the history
  2. ci/linux: build AppImage on Ubuntu 22.04 (Python 3.10)

    Ubuntu 20.04 only has Python 3.8, and because the 'truststore'
    dependency requires at least Python 3.10, the AppImage package would
    need to bundle CA certificates from 'certifi' to make HTTPS requests
    work at all, which is quite an ugly workaround.
    
    Unfortunately, as a side effect, building on Ubuntu 22.04 increases the
    minimum required version of glibc from 2.31 to 2.35.
    guihkx committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    6c01687 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5f51d27 View commit details
    Browse the repository at this point in the history