diff --git a/asv_bench/asv.conf.json b/asv_bench/asv.conf.json index 16f8f28b66d31..c503ae5e17471 100644 --- a/asv_bench/asv.conf.json +++ b/asv_bench/asv.conf.json @@ -42,7 +42,7 @@ // followed by the pip installed packages). "matrix": { "numpy": [], - "Cython": ["0.29.32"], + "Cython": ["0.29.33"], "matplotlib": [], "sqlalchemy": [], "scipy": [], diff --git a/ci/deps/actions-310.yaml b/ci/deps/actions-310.yaml index 64f9a3fd1ffbc..53a10ed10e4ff 100644 --- a/ci/deps/actions-310.yaml +++ b/ci/deps/actions-310.yaml @@ -6,7 +6,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-311.yaml b/ci/deps/actions-311.yaml index d474df1e75655..9b4652db0446c 100644 --- a/ci/deps/actions-311.yaml +++ b/ci/deps/actions-311.yaml @@ -6,7 +6,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-38-downstream_compat.yaml b/ci/deps/actions-38-downstream_compat.yaml index a9cd4c93dd604..85bc05c4bf65c 100644 --- a/ci/deps/actions-38-downstream_compat.yaml +++ b/ci/deps/actions-38-downstream_compat.yaml @@ -7,7 +7,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-38-minimum_versions.yaml b/ci/deps/actions-38-minimum_versions.yaml index 6877d7f14f66a..e5c32dad04c01 100644 --- a/ci/deps/actions-38-minimum_versions.yaml +++ b/ci/deps/actions-38-minimum_versions.yaml @@ -8,7 +8,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-38.yaml b/ci/deps/actions-38.yaml index ccde0f57f7bc4..c65f194830417 100644 --- a/ci/deps/actions-38.yaml +++ b/ci/deps/actions-38.yaml @@ -6,7 +6,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-39.yaml b/ci/deps/actions-39.yaml index aeb887d7ec1ab..0a5039126e49f 100644 --- a/ci/deps/actions-39.yaml +++ b/ci/deps/actions-39.yaml @@ -6,7 +6,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/actions-pypy-38.yaml b/ci/deps/actions-pypy-38.yaml index 1fde1e733be5a..36e1df6773f4c 100644 --- a/ci/deps/actions-pypy-38.yaml +++ b/ci/deps/actions-pypy-38.yaml @@ -9,7 +9,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/ci/deps/circle-38-arm64.yaml b/ci/deps/circle-38-arm64.yaml index 0d1a5f765b5ce..c3d89e735ae37 100644 --- a/ci/deps/circle-38-arm64.yaml +++ b/ci/deps/circle-38-arm64.yaml @@ -6,7 +6,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython>=0.29.32 + - cython>=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/environment.yml b/environment.yml index 38032ef76c19d..2a36247b23eb3 100644 --- a/environment.yml +++ b/environment.yml @@ -8,7 +8,7 @@ dependencies: # build dependencies - versioneer[toml] - - cython=0.29.32 + - cython=0.29.33 # test dependencies - pytest>=7.0.0 diff --git a/pyproject.toml b/pyproject.toml index c3a7cb013ca6c..2461eab5c7565 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = [ "setuptools>=61.0.0", "wheel", - "Cython>=0.29.32,<3", # Note: sync with setup.py, environment.yml and asv.conf.json + "Cython>=0.29.33,<3", # Note: sync with setup.py, environment.yml and asv.conf.json "oldest-supported-numpy>=2022.8.16", "versioneer[toml]" ] diff --git a/requirements-dev.txt b/requirements-dev.txt index f193475fcfbbc..74a55c289fbe0 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,7 +3,7 @@ pip versioneer[toml] -cython==0.29.32 +cython==0.29.33 pytest>=7.0.0 pytest-cov pytest-xdist>=2.2.0 diff --git a/setup.py b/setup.py index 87ef0b6029a64..b6dfcc5fbdb0d 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def is_platform_mac(): # note: sync with pyproject.toml, environment.yml and asv.conf.json -min_cython_ver = "0.29.32" +min_cython_ver = "0.29.33" try: from Cython import (