From 3ab08c85c4ca93327e56b04c46297468aa635b95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 19:02:43 +0000 Subject: [PATCH] Update cython requirement from <1,>=0.27 to >=0.27,<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.27...3.0.0) --- updated-dependencies: - dependency-name: cython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4cc49ca0..3f2b2921 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # core -Cython>=0.27,<1 +Cython>=0.27,<4 Jinja2>=2,<4 pyenet toml diff --git a/setup.py b/setup.py index 660c6399..b63044b8 100644 --- a/setup.py +++ b/setup.py @@ -133,10 +133,10 @@ def run(self): ], platforms="Darwin, Unix, Win32", - setup_requires=['Cython>=0.27,<1'], + setup_requires=['Cython>=0.27,<4'], install_requires=[ 'pypiwin32;platform_system=="Windows"', - 'Cython>=0.27,<1', + 'Cython>=0.27,<4', 'Twisted[tls]', 'Jinja2>=2,<4', 'Pillow>=5.1.0,<10',