Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to FontTools 4.55 and glyphsLib 6.9.5 #1133

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fonttools[ufo,repacker,lxml,unicode]==4.54.1; platform_python_implementation == 'CPython'
fonttools[ufo,repacker,unicode]==4.54.1; platform_python_implementation != 'CPython'
glyphsLib==6.9.4
fonttools[ufo,repacker,lxml,unicode]==4.55.0; platform_python_implementation == 'CPython'
fonttools[ufo,repacker,unicode]==4.55.0; platform_python_implementation != 'CPython'
glyphsLib==6.9.5
ufo2ft==3.3.1
fontMath==0.9.4
booleanOperations==0.9.0
Expand Down
18 changes: 9 additions & 9 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,12 +869,12 @@ def test_main_designspace_v5_builds_STAT(data_dir, tmp_path):
<DesignAxisRecord>
<Axis index="0">
<AxisTag value="wght"/>
<AxisNameID value="274"/>
<AxisNameID value="273"/>
<AxisOrdering value="0"/>
</Axis>
<Axis index="1">
<AxisTag value="wdth"/>
<AxisNameID value="276"/>
<AxisNameID value="275"/>
<AxisOrdering value="1"/>
</Axis>
</DesignAxisRecord>
Expand All @@ -883,7 +883,7 @@ def test_main_designspace_v5_builds_STAT(data_dir, tmp_path):
<AxisValue index="0" Format="4">
<!-- AxisCount=2 -->
<Flags value="0"/>
<ValueNameID value="280"/>
<ValueNameID value="279"/>
<AxisValueRecord index="0">
<AxisIndex value="0"/>
<Value value="610.2436"/>
Expand All @@ -896,7 +896,7 @@ def test_main_designspace_v5_builds_STAT(data_dir, tmp_path):
<AxisValue index="1" Format="4">
<!-- AxisCount=2 -->
<Flags value="0"/>
<ValueNameID value="281"/>
<ValueNameID value="280"/>
<AxisValueRecord index="0">
<AxisIndex value="0"/>
<Value value="642.2196"/>
Expand All @@ -909,7 +909,7 @@ def test_main_designspace_v5_builds_STAT(data_dir, tmp_path):
<AxisValue index="2" Format="2">
<AxisIndex value="0"/>
<Flags value="0"/>
<ValueNameID value="275"/>
<ValueNameID value="274"/>
<NominalValue value="300.0"/>
<RangeMinValue value="300.0"/>
<RangeMaxValue value="400.0"/>
Expand All @@ -933,29 +933,29 @@ def test_main_designspace_v5_builds_STAT(data_dir, tmp_path):
<AxisValue index="5" Format="2">
<AxisIndex value="1"/>
<Flags value="0"/>
<ValueNameID value="277"/>
<ValueNameID value="276"/>
<NominalValue value="50.0"/>
<RangeMinValue value="50.0"/>
<RangeMaxValue value="75.0"/>
</AxisValue>
<AxisValue index="6" Format="2">
<AxisIndex value="1"/>
<Flags value="2"/> <!-- ElidableAxisValueName -->
<ValueNameID value="278"/>
<ValueNameID value="277"/>
<NominalValue value="100.0"/>
<RangeMinValue value="75.0"/>
<RangeMaxValue value="125.0"/>
</AxisValue>
<AxisValue index="7" Format="2">
<AxisIndex value="1"/>
<Flags value="0"/>
<ValueNameID value="279"/>
<ValueNameID value="278"/>
<NominalValue value="200.0"/>
<RangeMinValue value="125.0"/>
<RangeMaxValue value="200.0"/>
</AxisValue>
</AxisValueArray>
<ElidedFallbackNameID value="273"/>"""
<ElidedFallbackNameID value="2"/>"""
).splitlines()
)

Expand Down
Loading