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

Remove PPB #1834

Merged
merged 5 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -632,9 +632,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
Loading