Skip to content

Commit

Permalink
chore: remove deprecated framework flag for build script
Browse files Browse the repository at this point in the history
  • Loading branch information
dynobo committed Dec 12, 2023
1 parent 79e86af commit 02783b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
7 changes: 0 additions & 7 deletions bundle/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@
parser = argparse.ArgumentParser(
prog="Package NormCap", description="Create prebuilt packages of Normcap."
)
parser.add_argument(
"--framework",
action="store",
choices=["briefcase"],
default="briefcase",
help="Select python bundling framework.",
)
parser.add_argument(
"--dev",
action="store_true",
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,7 @@ locales-compile = "python bundle/l10n.py"
locales-update = "python bundle/l10n.py --update-all"
create-locale = "python bundle/l10n.py --create-new"
version = "tbump {args:current-version}"
bundle = [
"locales-compile",
"python bundle/build.py --framework=briefcase {args}",
]
bundle = ["locales-compile", "python bundle/build.py {args}"]

[[tool.hatch.envs.all.matrix]]
python = ["3.9", "3.10", "3.11"]
Expand Down

0 comments on commit 02783b6

Please sign in to comment.