From ece041372451a8f444a0f4a859444e4a3965f112 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 15:15:11 +0000 Subject: [PATCH] chore: update twine requirement in /{{cookiecutter.repo_name}} Updates the requirements on [twine](https://github.com/pypa/twine) to permit the latest version. - [Release notes](https://github.com/pypa/twine/releases) - [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst) - [Commits](https://github.com/pypa/twine/compare/6.1.0...7.0.0) --- updated-dependencies: - dependency-name: twine dependency-version: 7.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- {{cookiecutter.repo_name}}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/pyproject.toml b/{{cookiecutter.repo_name}}/pyproject.toml index c37e623..23d0498 100644 --- a/{{cookiecutter.repo_name}}/pyproject.toml +++ b/{{cookiecutter.repo_name}}/pyproject.toml @@ -13,7 +13,7 @@ dev = [ "pyright==1.1.411", "pytest~=9.0", "ruff~=0.15.4", - "twine~=6.1", + "twine>=6.1,<8.0", ] [build-system]