[Intall Check][Fixed] Show 7.x as supported
- Only 7.99 is shown in red
This commit is contained in:
parent
22248c0068
commit
a3253b0496
|
|
@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Rotated polygons and text used in the worksheet (#466)
|
||||
- BoM:
|
||||
- Problems when trying to aggregate the datasheet field (#472)
|
||||
- kibot-check:
|
||||
- Show 7.x as supported (#469)
|
||||
|
||||
|
||||
## [1.6.3] - 2023-06-26
|
||||
|
|
|
|||
|
|
@ -1728,7 +1728,7 @@ if kicad_ok:
|
|||
version = 'Older than 5.1.6'
|
||||
else:
|
||||
version = NOT_AVAIL
|
||||
if kicad_version >= (5, 1, 6) and kicad_version < (6, 99):
|
||||
if kicad_version >= (5, 1, 6) and kicad_version < (7, 99):
|
||||
sev = 0
|
||||
else:
|
||||
sev = 4
|
||||
|
|
|
|||
|
|
@ -409,7 +409,7 @@ if kicad_ok:
|
|||
version = 'Older than 5.1.6'
|
||||
else:
|
||||
version = NOT_AVAIL
|
||||
if kicad_version >= (5, 1, 6) and kicad_version < (6, 99):
|
||||
if kicad_version >= (5, 1, 6) and kicad_version < (7, 99):
|
||||
sev = 0
|
||||
else:
|
||||
sev = 4
|
||||
|
|
|
|||
Loading…
Reference in New Issue