From 156c98b3b29b1d691693ad59a6b68d8928a5de9d Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 6 May 2022 13:02:05 -0300 Subject: [PATCH] Modified minimal PcbDraw version - Ask for one that supports KiCad 6 --- kibot/out_pcbdraw.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kibot/out_pcbdraw.py b/kibot/out_pcbdraw.py index e7340fb5..9c5a8d5e 100644 --- a/kibot/out_pcbdraw.py +++ b/kibot/out_pcbdraw.py @@ -20,7 +20,8 @@ from . import log logger = log.get_logger() SVG2PNG = 'rsvg-convert' CONVERT = 'convert' -MIN_VERSION = '0.6.0' +# 0.9.0 implements KiCad 6 support +MIN_VERSION = '0.9.0' class PcbDrawStyle(Optionable):