Skip to content

Commit 1be144a

Browse files
authored
bump cffi minimum version to help out pyopenssl (#5598)
fixes pyca/pyopenssl#971
1 parent 96f2d96 commit 1be144a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [
55
"setuptools>=40.6.0",
66
"wheel",
77
# Must be kept in sync with the `setup_requirements` in `setup.py`
8-
"cffi>=1.8,!=1.11.3; platform_python_implementation != 'PyPy'",
8+
"cffi>=1.12; platform_python_implementation != 'PyPy'",
99
]
1010
build-backend = "setuptools.build_meta"
1111

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
# `setup_requirements` must be kept in sync with `pyproject.toml`
29-
setup_requirements = ["cffi>=1.8,!=1.11.3"]
29+
setup_requirements = ["cffi>=1.12"]
3030

3131
if platform.python_implementation() == "PyPy":
3232
if sys.pypy_version_info < (5, 4):

0 commit comments

Comments
 (0)