Skip to content

Commit

Permalink
Merge pull request beeware#1834 from AstraLuma/rm-ppb
Browse files Browse the repository at this point in the history
Remove PPB
  • Loading branch information
freakboy3742 authored May 22, 2024
2 parents 2ae934d + bd1ed22 commit 7552b9e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 403 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [ "toga", "pyside6", "ppb", "pygame" ]
framework: [ "toga", "pyside6", "pygame" ]
runner-os: [ "macos-12", "macos-14", "ubuntu-22.04", "windows-latest" ]

verify-apps:
Expand All @@ -189,5 +189,5 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [ "toga", "pyside6", "ppb", "pygame" ]
framework: [ "toga", "pyside6", "pygame" ]
runner-os: [ "macos-12", "macos-14", "ubuntu-22.04", "windows-latest" ]
1 change: 0 additions & 1 deletion automation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dynamic = ["version", "dependencies"]
"Toga Automation" = "automation.bootstraps.toga:TogaAutomationBootstrap"
"PySide6 Automation" = "automation.bootstraps.pyside6:PySide6AutomationBootstrap"
"Pygame Automation" = "automation.bootstraps.pygame:PygameAutomationBootstrap"
"PursuedPyBear Automation" = "automation.bootstraps.pursuedpybear:PursuedPyBearAutomationBootstrap"

[tool.setuptools_scm]
root = "../"
Expand Down
50 changes: 0 additions & 50 deletions automation/src/automation/bootstraps/pursuedpybear.py

This file was deleted.

1 change: 1 addition & 0 deletions changes/1834.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Migrated PursuedPyBear bootstrap to the PursuedPyBear project.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ briefcase = "briefcase.__main__:main"
[project.entry-points."briefcase.bootstraps"]
Toga = "briefcase.bootstraps.toga:TogaGuiBootstrap"
PySide6 = "briefcase.bootstraps.pyside6:PySide6GuiBootstrap"
PursuedPyBear = "briefcase.bootstraps.pursuedpybear:PursuedPyBearGuiBootstrap"
Pygame = "briefcase.bootstraps.pygame:PygameGuiBootstrap"

[project.entry-points."briefcase.platforms"]
Expand Down
1 change: 0 additions & 1 deletion src/briefcase/bootstraps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from briefcase.bootstraps.base import BaseGuiBootstrap # noqa: F401
from briefcase.bootstraps.pursuedpybear import PursuedPyBearGuiBootstrap # noqa: F401
from briefcase.bootstraps.pygame import PygameGuiBootstrap # noqa: F401
from briefcase.bootstraps.pyside6 import PySide6GuiBootstrap # noqa: F401
from briefcase.bootstraps.toga import TogaGuiBootstrap # noqa: F401
167 changes: 0 additions & 167 deletions src/briefcase/bootstraps/pursuedpybear.py

This file was deleted.

3 changes: 1 addition & 2 deletions src/briefcase/commands/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,9 +653,8 @@ def _gui_bootstrap_choices(self, bootstraps):
# Sort the options alphabetically first
ordered = OrderedDict(sorted(bootstraps.items()))

# Ensure the first 5 options are: Toga, PySide6, PursuedPyBear, Pygame
# Ensure the first 5 options are: Toga, PySide6, Pygame
ordered.move_to_end("Pygame", last=False)
ordered.move_to_end("PursuedPyBear", last=False)
ordered.move_to_end("PySide6", last=False)
ordered.move_to_end("Toga", last=False)

Expand Down
Loading

0 comments on commit 7552b9e

Please sign in to comment.