Skip to content

Commit 9a85e00

Browse files
authored
Skip opentype/STAT/ital_axis for fonts without STAT table
(issue #4998 / PR #5054)
1 parent 86c5338 commit 9a85e00

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ A more detailed list of changes is available in the corresponding milestones for
77
#### On the OpenType profile
88
- **[opentype/monospace]**: Ensure check works with monospace OTF fonts (PR #5051)
99

10+
- **[opentype/STAT/ital_axis]**: Skip check for fonts without STAT table (issue #4998)
11+
1012
## 1.1.0 (2025-Oct-02)
1113
- Replace deprecated `pkg_resources` by `importlib.resources` (issue #5028)
1214

Lib/fontbakery/checks/opentype/STAT/ital_axis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_STAT_axis_value(ttFont, tag):
2222

2323
def check_has_ital(font):
2424
if "STAT" not in font.ttFont:
25-
yield FAIL, Message(
25+
yield SKIP, Message(
2626
"no-stat",
2727
f"Font {font.file} has no STAT table",
2828
)

0 commit comments

Comments
 (0)