Skip to content

Commit

Permalink
📌 ozi-templates~=2.3.4
Browse files Browse the repository at this point in the history
fixes missing ``OSI Approved :: ... Unlicense ... `` folder missing.

Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 30, 2024
1 parent bb0844e commit dc9186c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ozi/new/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
from prompt_toolkit.widgets import RadioList

from ozi.spec import METADATA
from ozi.tap import TAP
from ozi.trove import Prefix
from ozi.trove import from_prefix

Expand Down Expand Up @@ -761,7 +762,7 @@ def ok_handler() -> None:
Button(text=cancel_text, handler=_return_none),
],
with_background=True,
width=longest_line + 8 if longest_line > 40 else 80,
width=min(longest_line + 8, 80),
)
bindings = KeyBindings()
bindings.add('tab')(focus_next)
Expand Down Expand Up @@ -1236,5 +1237,5 @@ def interactive_prompt(project: Namespace) -> list[str]: # noqa: C901 # pragma
for i in v:
if len(i) > 0:
ret_args += [k, i]
print(ret_args)
TAP.diagnostic('ozi-new project args', ' '.join(ret_args))
return ret_args
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dnspython
idna>=2
jinja2>=3
meson[ninja]>=1.1.0
ozi-templates~=2.3.3
ozi-templates~=2.3.4
packaging~=24.0
pip-tools
prompt_toolkit
Expand Down

0 comments on commit dc9186c

Please sign in to comment.