diff --git a/.github/actions/app-create/action.yml b/.github/actions/app-create/action.yml index 7ffa3cb2..1d59fd13 100644 --- a/.github/actions/app-create/action.yml +++ b/.github/actions/app-create/action.yml @@ -70,7 +70,6 @@ runs: case "$(tr '[:upper:]' '[:lower:]' <<< "${{ inputs.framework }}")" in toga ) BOOTSTRAP=Toga ;; pyside6 ) BOOTSTRAP=PySide6 ;; - ppb ) BOOTSTRAP=PursuedPyBear ;; pygame ) BOOTSTRAP=Pygame ;; * ) BOOTSTRAP=${{ inputs.framework }} ;; esac diff --git a/.github/workflows/app-build-verify.yml b/.github/workflows/app-build-verify.yml index fc81746e..76bef730 100644 --- a/.github/workflows/app-build-verify.yml +++ b/.github/workflows/app-build-verify.yml @@ -62,7 +62,6 @@ jobs: SDL_AUDIODRIVER: dummy # disable audio for SDL TOGA_SYSTEM_REQUIRES: libthai-dev libegl1 libcairo2-dev libgirepository1.0-dev gir1.2-gtk-3.0 PYSIDE6_SYSTEM_REQUIRES: libx11-xcb1 libxkbcommon-x11-0 libxcb-image0 libxcb-cursor0 libxcb-shape0 libxcb-icccm4 libxcb-keysyms1 libgl1 libegl1 - PPB_SYSTEM_REQUIRES: libsdl2-2.0-0 libsdl2-mixer-2.0-0 libsdl2-image-2.0-0 libsdl2-gfx-1.0-0 libsdl2-ttf-2.0-0 steps: - name: Workflow Configuration @@ -230,7 +229,6 @@ jobs: case "$(tr '[:upper:]' '[:lower:]' <<< '${{ inputs.framework }}')" in toga ) PACKAGES="${PACKAGES} ${{ env.TOGA_SYSTEM_REQUIRES }}" ;; pyside6 ) PACKAGES="${PACKAGES} ${{ env.PYSIDE6_SYSTEM_REQUIRES }}" ;; - ppb ) PACKAGES="${PACKAGES} ${{ env.PPB_SYSTEM_REQUIRES }}" ;; esac sudo apt install -y --no-install-recommends ${PACKAGES} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b747ded..6c6733bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -211,7 +211,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, ppb ] + framework: [ toga ] runner-os: [ macos-latest, windows-latest, ubuntu-22.04 ] test-verify-apps-briefcase-template: @@ -226,7 +226,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, ppb ] + framework: [ toga ] runner-os: [ macos-latest, windows-latest, ubuntu-latest ] test-verify-apps-android-templates: @@ -276,7 +276,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, pyside6, ppb, pygame ] + framework: [ toga, pyside6, pygame ] test-verify-apps-appimage-templates: name: Verify AppImage @@ -292,7 +292,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, pyside6, ppb, pygame ] + framework: [ toga, pyside6, pygame ] test-verify-apps-flatpak-templates: name: Verify Flatpak @@ -308,7 +308,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, pyside6, ppb, pygame ] + framework: [ toga, pyside6, pygame ] test-verify-apps-macOS-templates: name: Verify macOS @@ -324,7 +324,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, pyside6, ppb, pygame ] + framework: [ toga, pyside6, pygame ] format: [ app, Xcode ] test-verify-apps-web-templates: @@ -357,5 +357,5 @@ jobs: strategy: fail-fast: false matrix: - framework: [ toga, pyside6, ppb, pygame ] + framework: [ toga, pyside6, pygame ] format: [ app, VisualStudio ]