Skip to content

Commit

Permalink
Install the packaging dependency
Browse files Browse the repository at this point in the history
Fixes failures like:
```
  File "./plugin-template", line 18, in <module>
    from packaging.requirements import Requirement
ModuleNotFoundError: No module named 'packaging'
```

[noissue]
  • Loading branch information
lubosmj committed Feb 2, 2024
1 parent e121aa6 commit 0528507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/github/.github/workflows/create-branch.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

{{ setup_python(pyversion="3.8") | indent(6) }}

{{ install_python_deps(["bump2version", "jinja2", "pyyaml"]) | indent(6) }}
{{ install_python_deps(["bump2version", "jinja2", "pyyaml", "packaging"]) | indent(6) }}

{{ set_secrets(path=plugin_name) | indent(6) }}

Expand Down

0 comments on commit 0528507

Please sign in to comment.