-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from rmartin16/gui-plugin-support
Generalize template for GUI framework plugins
- Loading branch information
Showing
20 changed files
with
584 additions
and
558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,21 +10,52 @@ concurrency: | |
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
env: | ||
FORCE_COLOR: "1" | ||
|
||
jobs: | ||
pre-commit: | ||
name: Pre-commit checks | ||
uses: beeware/.github/.github/workflows/pre-commit-run.yml@main | ||
with: | ||
pre-commit-source: -r requirements.txt | ||
|
||
unit-tests: | ||
name: Unit tests | ||
needs: pre-commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v4.7.1 | ||
with: | ||
python-version: "3.X" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install tox | ||
|
||
- name: Install Dependencies | ||
run: python -m pip install -r requirements.txt | ||
|
||
- name: Test with tox | ||
run: | | ||
tox | ||
run: tox | ||
|
||
verify-templates: | ||
name: Verify Templates | ||
needs: unit-tests | ||
uses: beeware/.github/.github/workflows/app-create-verify.yml@main | ||
with: | ||
runner-os: ${{ matrix.runner-os }} | ||
framework: ${{ matrix.framework }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
framework: [ "toga", "pyside6", "ppb", "pygame" ] | ||
runner-os: [ "macos-latest", "ubuntu-22.04", "windows-latest" ] | ||
|
||
|
||
verify-apps: | ||
name: Build App | ||
|
@@ -37,16 +68,10 @@ jobs: | |
# ubuntu-latest upgrades to ubuntu-24.04, it will happen gradually, so the | ||
# system Python version won't be predictable. | ||
python-version: "3.10" | ||
briefcase-template-source: "../../" | ||
runner-os: ${{ matrix.runner-os }} | ||
framework: ${{ matrix.framework }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
framework: [ "toga", "pyside2", "pyside6", "ppb", "pygame" ] | ||
framework: [ "toga", "pyside6", "ppb", "pygame" ] | ||
runner-os: [ "macos-latest", "ubuntu-22.04", "windows-latest" ] | ||
exclude: | ||
# PySide2 doesn't publish *any* universal or ARM64 wheels, and is unlikely to | ||
# ever do so, so we can't test pyside2 on macOS | ||
- runner-os: "macos-latest" | ||
framework: "pyside2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Update pre-commit | ||
|
||
on: | ||
schedule: | ||
- cron: "0 20 * * SUN" # Sunday @ 2000 UTC | ||
workflow_dispatch: | ||
|
||
jobs: | ||
pre-commit-update: | ||
name: Update pre-commit | ||
uses: beeware/.github/.github/workflows/pre-commit-update.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
exclude: ^{{ cookiecutter.app_name }}/ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-toml | ||
- id: check-yaml | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
additional_dependencies: [toml] | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.15.0 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py38-plus] | ||
- repo: https://github.com/PyCQA/docformatter | ||
rev: v1.7.5 | ||
hooks: | ||
- id: docformatter | ||
args: [--in-place, --black] | ||
- repo: https://github.com/psf/black-pre-commit-mirror | ||
rev: 23.10.1 | ||
hooks: | ||
- id: black | ||
language_version: python3 | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.1.0 | ||
hooks: | ||
- id: flake8 | ||
args: [--max-line-length=119] | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.2.6 | ||
hooks: | ||
- id: codespell | ||
additional_dependencies: [tomli] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
import re | ||
import sys | ||
|
||
|
||
# The restriction on application naming comes from PEP508 | ||
PEP508_NAME_RE = re.compile( | ||
r'^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$', | ||
re.IGNORECASE | ||
) | ||
PEP508_NAME_RE = re.compile(r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE) | ||
|
||
app_name = '{{ cookiecutter.app_name }}' | ||
app_name = "{{ cookiecutter.app_name }}" | ||
|
||
if not re.match(PEP508_NAME_RE, app_name): | ||
print('ERROR: `%s` is not a valid Python package name!' % app_name) | ||
print("ERROR: `%s` is not a valid Python package name!" % app_name) | ||
|
||
# exits with status 1 to indicate failure | ||
sys.exit(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
briefcase @ git+https://github.com/beeware/briefcase.git | ||
cookiecutter == 2.4.0 | ||
flake8 == 6.1.0 | ||
pre-commit == 3.5.0 | ||
pytest == 7.4.3 | ||
toml == 0.10.2 | ||
tox == 4.11.3 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.