Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -105,7 +105,7 @@ jobs:
shell: bash
run: |
gem install test-unit
pip install "cython>=3" setuptools pytest requests setuptools-scm
pip install "cython>=3.1" setuptools pytest requests setuptools-scm
- name: Run Release Test
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion ci/conda_env_python.txt
Original file line numberDiff line numberDiff line change
Expand Up@@ -20,7 +20,7 @@
# Not a direct dependency of s3fs, but needed for our s3fs fixture
boto3
cffi
cython>=3
cython>=3.1
cloudpickle
fsspec
hypothesis
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,7 +17,7 @@

[build-system]
requires = [
"cython >= 3",
"cython >= 3.1",
# Starting with NumPy 1.25, NumPy is (by default) as far back compatible
# as oldest-support-numpy was (customizable with a NPY_TARGET_VERSION
# define). For older Python versions (where NumPy 1.25 is not yet available)
Expand Down
2 changes: 1 addition & 1 deletion python/requirements-build.txt
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
cython>=3
cython>=3.1
oldest-supported-numpy>=0.14; python_version<'3.9'
numpy>=1.25; python_version>='3.9'
setuptools_scm>=8
Expand Down
2 changes: 1 addition & 1 deletion python/requirements-wheel-build.txt
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
cython>=3
cython>=3.1
oldest-supported-numpy>=0.14; python_version<'3.9'
numpy>=2.0.0; python_version>='3.9'
setuptools_scm
Expand Down
4 changes: 2 additions & 2 deletions python/setup.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -48,9 +48,9 @@
)


if Cython.__version__ < '3':
if Cython.__version__ < '3.1':
raise Exception(
'Please update your Cython version. Supported Cython >= 3')
'Please update your Cython version. Supported Cython >= 3.1')

setup_dir = os.path.abspath(os.path.dirname(__file__))

Expand Down
Loading