From 7531b7171748d87eec8f9cd0d92bb0f44ce20a4f Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sun, 27 Sep 2020 17:40:23 +0100 Subject: [PATCH] require skia-pathops >= 0.4.2 with the new 'clockwise' option --- requirements.txt | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0f2a1327d..608e8677f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,5 +7,6 @@ scipy==1.5.2; platform_python_implementation != "PyPy" munkres==1.1.2; platform_python_implementation == "PyPy" zopfli==0.1.6 fs==2.4.11 +skia-pathops==0.4.2 # this is only required to run Tests/cu2qu/{ufo,cli}_test.py ufoLib2==0.6.2 diff --git a/setup.py b/setup.py index 412431abc..016ba7d31 100755 --- a/setup.py +++ b/setup.py @@ -124,7 +124,7 @@ extras_require = { ], # for fontTools.ttLib.removeOverlaps, to remove overlaps in TTF fonts "pathops": [ - "skia-pathops >= 0.4.1", + "skia-pathops >= 0.4.2", ], } # use a special 'all' key as shorthand to includes all the extra dependencies