From 69cfa6936ec384d38c855c685abc20ef2d91edba Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Mon, 10 Feb 2025 13:02:22 +0100 Subject: [PATCH] Configuring with plone.meta Remove dependency checker, as a GitHub Action, as it's a bit pointless to mark everything as ignored due to the nature of how dependencies are split in this distribution. --- .github/workflows/meta.yml | 2 -- .meta.toml | 11 ++++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/meta.yml b/.github/workflows/meta.yml index 667d046..64eb19e 100644 --- a/.github/workflows/meta.yml +++ b/.github/workflows/meta.yml @@ -30,8 +30,6 @@ jobs: uses: plone/meta/.github/workflows/test.yml@main coverage: uses: plone/meta/.github/workflows/coverage.yml@main - dependencies: - uses: plone/meta/.github/workflows/dependencies.yml@main release_ready: uses: plone/meta/.github/workflows/release_ready.yml@main circular: diff --git a/.meta.toml b/.meta.toml index ee76a10..d008bdd 100644 --- a/.meta.toml +++ b/.meta.toml @@ -3,7 +3,16 @@ # See the inline comments on how to expand/tweak this configuration file [meta] template = "default" -commit-id = "effcd7ef" +commit-id = "552ab2b7" [pyproject] dependencies_ignores = "['ZServer', 'StringIO', 'urllib2']" + +[github] +jobs = [ + "qa", + "test", + "coverage", + "release_ready", + "circular", + ]