We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef4bcc commit d3a196cCopy full SHA for d3a196c
1 file changed
.manager/src/proman/output.py
@@ -305,15 +305,14 @@ def get_noarch_os():
305
readme_render_command = self._branch_manager.data[
306
"devcontainer_main.environment.pybuild.task.render-readme.alias"
307
]
308
- for key, value in self._branch_manager.data.items():
309
- if not key.startswith("pypkg_"):
310
- continue
+ for pkg_id in ("main", "test"):
311
if (
312
not (publish_pypi or publish_testpypi or publish_anaconda)
313
and build_config["action"] == "disabled"
314
):
315
continue
316
- pkg_id = key.removeprefix("pypkg_")
+ key = f"pypkg_{pkg_id}"
+ value = self._branch_manager.data[key]
317
pure_python = value["python"]["pure"]
318
build_job = {
319
"repository": self._repository,
0 commit comments