Modified minimal PcbDraw version

- Ask for one that supports KiCad 6
This commit is contained in:
Salvador E. Tropea 2022-05-06 13:02:05 -03:00
parent 8a3f808117
commit 156c98b3b2
1 changed files with 2 additions and 1 deletions

View File

@ -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):