From efa83bf52117031d2321aca322f146ea3cae6f1e Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 6 Dec 2022 22:20:59 +0100 Subject: [PATCH] Pin `setuptools` for pkg stub to v65.6.3 This patch is meant to improve the reproducibility of smoke-testing. --- .github/workflows/self-smoke-test-action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/self-smoke-test-action.yml b/.github/workflows/self-smoke-test-action.yml index 21bd7b1..9e6e717 100644 --- a/.github/workflows/self-smoke-test-action.yml +++ b/.github/workflows/self-smoke-test-action.yml @@ -56,8 +56,11 @@ jobs: env: CONTENTS: | [build-system] - requires = ["setuptools>=61"] + requires = [ + "setuptools == 65.6.3", + ] build-backend = "setuptools.build_meta" + [project] name = "test-package" version = "0.1"