Skip to content

Commit 84afafd

Browse files
authored
Require CFFI 2.0.0 or newer on Python >= 3.9 (#894)
1 parent 3209bf1 commit 84afafd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
requires = [
44
"setuptools>=61.0.0,!=74.0.0",
55
"wheel",
6-
"cffi>=1.4.1; platform_python_implementation != 'PyPy' and python_version < '3.14'",
7-
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.14'",
6+
"cffi>=1.4.1; platform_python_implementation != 'PyPy' and python_version < '3.9'",
7+
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.9'",
88
]
99
build-backend = "setuptools.build_meta"
1010

@@ -35,8 +35,8 @@ classifiers = [
3535
]
3636
requires-python = ">=3.8"
3737
dependencies = [
38-
"cffi>=1.4.1; platform_python_implementation != 'PyPy' and python_version < '3.14'",
39-
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.14'",
38+
"cffi>=1.4.1; platform_python_implementation != 'PyPy' and python_version < '3.9'",
39+
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.9'",
4040
]
4141

4242
[project.optional-dependencies]

0 commit comments

Comments
 (0)