From 5ddb4726d42c3093d32983b56a9348dcf0241953 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Wed, 20 Sep 2023 12:36:28 +0100 Subject: [PATCH] Test failure of test-action --- action.yml | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f00ae2cb2db..1fdd2e04da5 100644 --- a/action.yml +++ b/action.yml @@ -43,6 +43,10 @@ runs: # SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.action_ref || 'main' }} run: | cd $GITHUB_ACTION_PATH + pip --version + pip freeze + pip check + pip debug pip install "ansible-lint[lock] @ git+https://github.com/ansible/ansible-lint@${{ github.action_ref || 'main' }}" ansible-lint --version diff --git a/pyproject.toml b/pyproject.toml index 47d40429bbe..e444acaa7ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ "setuptools >= 65.3.0", # required by pyproject+setuptools_scm integration and editable installs - "setuptools_scm[toml] >= 7.0.5", # required for "no-local-version" scheme + "setuptools_scm[toml] >= 7.0.5, != 8.0.0", # required for "no-local-version" scheme ] build-backend = "setuptools.build_meta"