[Intall Check][Fixed] Show 7.x as supported

- Only 7.99 is shown in red
This commit is contained in:
Salvador E. Tropea 2023-07-31 13:35:18 -03:00
parent 22248c0068
commit a3253b0496
3 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

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