Skip to content

Commit

Permalink
[Intall Check][Fixed] Show 7.x as supported
Browse files Browse the repository at this point in the history
- Only 7.99 is shown in red
  • Loading branch information
set-soft committed Jul 31, 2023
1 parent 22248c0 commit a3253b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/kibot-check
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/kibot-check.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a3253b0

Please sign in to comment.