From 4ec835f838ed8e1eee8f0ae941715fca340964d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:52:28 +0000 Subject: [PATCH] build(deps-dev): update tuf requirement from ~=3.0 to >=3,<5 in /signer Updates the requirements on [tuf](https://github.com/theupdateframework/python-tuf) to permit the latest version. - [Release notes](https://github.com/theupdateframework/python-tuf/releases) - [Changelog](https://github.com/theupdateframework/python-tuf/blob/develop/docs/CHANGELOG.md) - [Commits](https://github.com/theupdateframework/python-tuf/compare/v3.0.0...v4.0.0) --- updated-dependencies: - dependency-name: tuf dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- signer/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/pyproject.toml b/signer/pyproject.toml index 14d2f310..541eac1d 100644 --- a/signer/pyproject.toml +++ b/signer/pyproject.toml @@ -10,7 +10,7 @@ dependencies = [ "packaging >= 23.2,< 25.0", "platformdirs ~= 4.2", "securesystemslib[awskms,azurekms,gcpkms,hsm,sigstore] ~= 0.31.0", - "tuf ~= 3.0", + "tuf >= 3,< 5", "click ~= 8.1", ] requires-python = ">=3.10"