From 9957b24acd22ee4a037cb3d4253a3ac123373280 Mon Sep 17 00:00:00 2001 From: Michael <18199611+Code-You-Fools@users.noreply.github.com> Date: Wed, 7 Oct 2020 16:32:27 -0500 Subject: [PATCH] Fix Dockerfile Python after 3.7 removes `tp_print` from `PyTypeObject`, preventing `pyclipper` 1.1.0.post1 from compiling. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 03d9f501b..13ab60bb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:buster +FROM python:3.7 RUN apt update && apt install -y \ git \ zopfli \