Skip to content
Snippets Groups Projects
Commit 57579f4d authored by David Douard's avatar David Douard
Browse files

template: Fix pyproject template

Fix a mixed up have_cli / have_workers in the pyproject jinja template.
parent 39d122e1
No related branches found
Tags v0.1.2
No related merge requests found
Pipeline #5462 failed
......@@ -27,7 +27,7 @@ testing = {file = ["requirements.txt", "requirements-swh.txt", "requirements-tes
{% if have_cli %}
[project.entry-points."swh.cli.subcommands"]
"{{project_name}}" = "{{project_name}}.cli"
{% endif %}{% if have_cli %}
{% endif %}{% if have_workers %}
[project.entry-points."swh.workers"]
"{{project_name}}" = "{{project_name}}:register_worker"
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment