Skip to content

Commit 7552b9e

Browse files
authored
Merge pull request #1834 from AstraLuma/rm-ppb
Remove PPB
2 parents 2ae934d + bd1ed22 commit 7552b9e

File tree

9 files changed

+9
-403
lines changed

9 files changed

+9
-403
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
strategy:
171171
fail-fast: false
172172
matrix:
173-
framework: [ "toga", "pyside6", "ppb", "pygame" ]
173+
framework: [ "toga", "pyside6", "pygame" ]
174174
runner-os: [ "macos-12", "macos-14", "ubuntu-22.04", "windows-latest" ]
175175

176176
verify-apps:
@@ -189,5 +189,5 @@ jobs:
189189
strategy:
190190
fail-fast: false
191191
matrix:
192-
framework: [ "toga", "pyside6", "ppb", "pygame" ]
192+
framework: [ "toga", "pyside6", "pygame" ]
193193
runner-os: [ "macos-12", "macos-14", "ubuntu-22.04", "windows-latest" ]

automation/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ dynamic = ["version", "dependencies"]
1919
"Toga Automation" = "automation.bootstraps.toga:TogaAutomationBootstrap"
2020
"PySide6 Automation" = "automation.bootstraps.pyside6:PySide6AutomationBootstrap"
2121
"Pygame Automation" = "automation.bootstraps.pygame:PygameAutomationBootstrap"
22-
"PursuedPyBear Automation" = "automation.bootstraps.pursuedpybear:PursuedPyBearAutomationBootstrap"
2322

2423
[tool.setuptools_scm]
2524
root = "../"

automation/src/automation/bootstraps/pursuedpybear.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

changes/1834.removal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Migrated PursuedPyBear bootstrap to the PursuedPyBear project.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ briefcase = "briefcase.__main__:main"
133133
[project.entry-points."briefcase.bootstraps"]
134134
Toga = "briefcase.bootstraps.toga:TogaGuiBootstrap"
135135
PySide6 = "briefcase.bootstraps.pyside6:PySide6GuiBootstrap"
136-
PursuedPyBear = "briefcase.bootstraps.pursuedpybear:PursuedPyBearGuiBootstrap"
137136
Pygame = "briefcase.bootstraps.pygame:PygameGuiBootstrap"
138137

139138
[project.entry-points."briefcase.platforms"]
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from briefcase.bootstraps.base import BaseGuiBootstrap # noqa: F401
2-
from briefcase.bootstraps.pursuedpybear import PursuedPyBearGuiBootstrap # noqa: F401
32
from briefcase.bootstraps.pygame import PygameGuiBootstrap # noqa: F401
43
from briefcase.bootstraps.pyside6 import PySide6GuiBootstrap # noqa: F401
54
from briefcase.bootstraps.toga import TogaGuiBootstrap # noqa: F401

src/briefcase/bootstraps/pursuedpybear.py

Lines changed: 0 additions & 167 deletions
This file was deleted.

src/briefcase/commands/new.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,9 +653,8 @@ def _gui_bootstrap_choices(self, bootstraps):
653653
# Sort the options alphabetically first
654654
ordered = OrderedDict(sorted(bootstraps.items()))
655655

656-
# Ensure the first 5 options are: Toga, PySide6, PursuedPyBear, Pygame
656+
# Ensure the first 5 options are: Toga, PySide6, Pygame
657657
ordered.move_to_end("Pygame", last=False)
658-
ordered.move_to_end("PursuedPyBear", last=False)
659658
ordered.move_to_end("PySide6", last=False)
660659
ordered.move_to_end("Toga", last=False)
661660

0 commit comments

Comments
 (0)