From 3dae448e71424461ff758124d364ecd46666ea82 Mon Sep 17 00:00:00 2001 From: Maximilian Linhoff Date: Thu, 18 Jul 2024 13:47:24 +0200 Subject: [PATCH] Check dists in CI --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf5504464d7..7ecd94d4ad8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,6 +129,16 @@ jobs: pip freeze pip list + - name: debug distributions + run: | + python -c ' + from importlib.metadata import distributions + for dist in distributions(): + if dist.name is None: + print("ERROR: Found dist without name") + print(dist.metadata.json) + ' + - name: ctapipe-info if: contains(github.event.pull_request.labels.*.name, 'documentation-only') == false run: |