From 0c95fffaf07b691d5ae30d7145bdd024484a6073 Mon Sep 17 00:00:00 2001 From: ZipFile Date: Mon, 19 May 2025 13:31:34 +0000 Subject: [PATCH] Require Cython>=3.1.1 --- .github/workflows/tests-and-linters.yml | 2 +- pyproject.toml | 2 +- requirements-dev.txt | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-and-linters.yml b/.github/workflows/tests-and-linters.yml index f43a2db8..4ee0d192 100644 --- a/.github/workflows/tests-and-linters.yml +++ b/.github/workflows/tests-and-linters.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.12 - - run: pip install tox 'cython>=3,<4' + - run: pip install tox - run: tox -vv env: TOXENV: coveralls diff --git a/pyproject.toml b/pyproject.toml index ec5daadd..80a054e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "Cython"] +requires = ["setuptools", "Cython>=3.1.1"] build-backend = "setuptools.build_meta" [project] diff --git a/requirements-dev.txt b/requirements-dev.txt index e0def494..47e3ca42 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -cython==3.1.0 +cython==3.1.1 setuptools pytest pytest-asyncio @@ -13,7 +13,8 @@ mypy pyyaml httpx fastapi -pydantic==1.10.17 +pydantic +pydantic-settings numpy scipy boto3