From 33da5ca86989fdd437e34ed58d10a9aad8c2947b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 26 Jan 2019 12:50:10 +0530 Subject: [PATCH] --with-system-ffi is ignored as of py3.7 --- .circleci/images/install-python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/images/install-python.py b/.circleci/images/install-python.py index 2954b3174..b29656721 100644 --- a/.circleci/images/install-python.py +++ b/.circleci/images/install-python.py @@ -53,7 +53,7 @@ if PY == 'bundle': else: src = os.path.abspath(tuple(os.listdir('.'))[0]) os.chdir(src) - run(f'./configure --prefix=/opt/{PY} --enable-shared --with-system-expat --with-system-ffi --without-ensurepip') + run(f'./configure --prefix=/opt/{PY} --enable-shared --with-system-expat --without-ensurepip') run(f'make -j {os.cpu_count()}') run('make install') os.chdir('/')