From e2ac62c8a301d03f00e031b4523ccc02a88001d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 03:12:54 +0000 Subject: [PATCH] Update cython requirement from <4,>=0.29 to >=3.2.4,<4 Updates the requirements on [cython](https://github.com/cython/cython) to permit the latest version. - [Release notes](https://github.com/cython/cython/releases) - [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst) - [Commits](https://github.com/cython/cython/compare/0.29...3.2.4) --- updated-dependencies: - dependency-name: cython dependency-version: 3.2.4 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements-dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 263bde3..8d4c56e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [build-system] requires = [ - "Cython < 4, >= 0.29", + "Cython >= 3.2.4, < 4", "setuptools >= 61", ] build-backend = "setuptools.build_meta" diff --git a/requirements-dev.txt b/requirements-dev.txt index 2107597..d6fd69d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,6 +1,6 @@ build colorama == 0.4.* -cython < 4, >= 0.29 +cython >= 3.2.4, < 4 more_itertools == 10.* mypy setuptools >= 61