fonttools 4.55.8__cp312-cp312-musllinux_1_2_aarch64.whl → 4.56.0__cp312-cp312-musllinux_1_2_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fonttools might be problematic. Click here for more details.

fontTools/__init__.py CHANGED
@@ -3,6 +3,6 @@ from fontTools.misc.loggingTools import configLogger
3
3
 
4
4
  log = logging.getLogger(__name__)
5
5
 
6
- version = __version__ = "4.55.8"
6
+ version = __version__ = "4.56.0"
7
7
 
8
8
  __all__ = ["version", "log", "configLogger"]
fontTools/feaLib/error.py CHANGED
@@ -1,5 +1,5 @@
1
1
  class FeatureLibError(Exception):
2
- def __init__(self, message, location):
2
+ def __init__(self, message, location=None):
3
3
  Exception.__init__(self, message)
4
4
  self.location = location
5
5
 
@@ -58,6 +58,9 @@ class FakeFont:
58
58
  self.tables = {}
59
59
  self.cfg = Config()
60
60
 
61
+ def __contains__(self, tag):
62
+ return tag in self.tables
63
+
61
64
  def __getitem__(self, tag):
62
65
  return self.tables[tag]
63
66
 
@@ -385,7 +385,7 @@ otData = [
385
385
  (
386
386
  "DeltaValue",
387
387
  "DeltaValue",
388
- "",
388
+ None,
389
389
  "DeltaFormat in (1,2,3)",
390
390
  "Array of compressed data",
391
391
  ),
@@ -2226,24 +2226,28 @@ _equivalents = {
2226
2226
  def fixLookupOverFlows(ttf, overflowRecord):
2227
2227
  """Either the offset from the LookupList to a lookup overflowed, or
2228
2228
  an offset from a lookup to a subtable overflowed.
2229
- The table layout is:
2230
- GPSO/GUSB
2231
- Script List
2232
- Feature List
2233
- LookUpList
2234
- Lookup[0] and contents
2235
- SubTable offset list
2236
- SubTable[0] and contents
2237
- ...
2238
- SubTable[n] and contents
2239
- ...
2240
- Lookup[n] and contents
2241
- SubTable offset list
2242
- SubTable[0] and contents
2243
- ...
2244
- SubTable[n] and contents
2229
+
2230
+ The table layout is::
2231
+
2232
+ GPSO/GUSB
2233
+ Script List
2234
+ Feature List
2235
+ LookUpList
2236
+ Lookup[0] and contents
2237
+ SubTable offset list
2238
+ SubTable[0] and contents
2239
+ ...
2240
+ SubTable[n] and contents
2241
+ ...
2242
+ Lookup[n] and contents
2243
+ SubTable offset list
2244
+ SubTable[0] and contents
2245
+ ...
2246
+ SubTable[n] and contents
2247
+
2245
2248
  If the offset to a lookup overflowed (SubTableIndex is None)
2246
- we must promote the *previous* lookup to an Extension type.
2249
+ we must promote the *previous* lookup to an Extension type.
2250
+
2247
2251
  If the offset from a lookup to subtable overflowed, then we must promote it
2248
2252
  to an Extension Lookup type.
2249
2253
  """
@@ -79,7 +79,8 @@ def bfs_base_table(
79
79
  """Breadth-first search tree of BaseTables.
80
80
 
81
81
  Args:
82
- the root of the tree.
82
+ root
83
+ the root of the tree.
83
84
  root_accessor (Optional[str]): attribute name for the root table, if any (mostly
84
85
  useful for debugging).
85
86
  skip_root (Optional[bool]): if True, the root itself is not visited, only its
fontTools/ttLib/ttFont.py CHANGED
@@ -27,6 +27,7 @@ class TTFont(object):
27
27
  they're actually accessed. This means that simple operations can be extremely fast.
28
28
 
29
29
  Example usage:
30
+
30
31
  .. code-block:: pycon
31
32
 
32
33
  >>>
@@ -39,8 +40,10 @@ class TTFont(object):
39
40
  >> tt['head'].unitsPerEm
40
41
  2048
41
42
 
42
- For details of the objects returned when accessing each table, see :ref:`tables`.
43
+ For details of the objects returned when accessing each table, see the
44
+ :doc:`tables </ttLib/tables>` documentation.
43
45
  To add a table to the font, use the :py:func:`newTable` function:
46
+
44
47
  .. code-block:: pycon
45
48
 
46
49
  >>>
@@ -50,7 +53,8 @@ class TTFont(object):
50
53
  >> font["OS/2"] = os2
51
54
 
52
55
  TrueType fonts can also be serialized to and from XML format (see also the
53
- :ref:`ttx` binary):
56
+ :doc:`ttx </ttx>` binary):
57
+
54
58
  .. code-block:: pycon
55
59
 
56
60
  >>
@@ -325,7 +325,6 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
325
325
 
326
326
  for glyph in font.getGlyphOrder():
327
327
  log.debug("building gvar for glyph '%s'", glyph)
328
- isComposite = glyf[glyph].isComposite()
329
328
 
330
329
  allData = [
331
330
  m.glyf._getCoordinatesAndControls(glyph, m.hMetrics, m.vMetrics)
@@ -363,7 +362,7 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
363
362
  endPts = control.endPts
364
363
 
365
364
  for i, (delta, support) in enumerate(zip(deltas[1:], supports[1:])):
366
- if all(v == 0 for v in delta.array) and not isComposite:
365
+ if all(v == 0 for v in delta.array):
367
366
  continue
368
367
  var = TupleVariation(support, delta)
369
368
  if optimize:
@@ -372,16 +371,6 @@ def _add_gvar(font, masterModel, master_ttfs, tolerance=0.5, optimize=True):
372
371
  )
373
372
 
374
373
  if None in delta_opt:
375
- """In composite glyphs, there should be one 0 entry
376
- to make sure the gvar entry is written to the font.
377
-
378
- This is to work around an issue with macOS 10.14 and can be
379
- removed once the behaviour of macOS is changed.
380
-
381
- https://github.com/fonttools/fonttools/issues/1381
382
- """
383
- if all(d is None for d in delta_opt):
384
- delta_opt = [(0, 0)] + [None] * (len(delta_opt) - 1)
385
374
  # Use "optimized" version only if smaller...
386
375
  var_opt = TupleVariation(support, delta_opt)
387
376
 
@@ -412,25 +412,6 @@ class _Encoding(object):
412
412
  def extend(self, lst):
413
413
  self.items.update(lst)
414
414
 
415
- def get_room(self):
416
- """Maximum number of bytes that can be added to characteristic
417
- while still being beneficial to merge it into another one."""
418
- count = len(self.items)
419
- return max(0, (self.overhead - 1) // count - self.width)
420
-
421
- room = property(get_room)
422
-
423
- def get_gain(self):
424
- """Maximum possible byte gain from merging this into another
425
- characteristic."""
426
- count = len(self.items)
427
- return max(0, self.overhead - count)
428
-
429
- gain = property(get_gain)
430
-
431
- def gain_sort_key(self):
432
- return self.gain, self.chars
433
-
434
415
  def width_sort_key(self):
435
416
  return self.width, self.chars
436
417
 
@@ -534,13 +515,9 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
534
515
  # of the old encoding is completely eliminated. However, each row
535
516
  # now would require more bytes to encode, to the tune of one byte
536
517
  # per characteristic bit that is active in the new encoding but not
537
- # in the old one. The number of bits that can be added to an encoding
538
- # while still beneficial to merge it into another encoding is called
539
- # the "room" for that encoding.
518
+ # in the old one.
540
519
  #
541
- # The "gain" of an encodings is the maximum number of bytes we can
542
- # save by merging it into another encoding. The "gain" of merging
543
- # two encodings is how many bytes we save by doing so.
520
+ # The "gain" of merging two encodings is how many bytes we save by doing so.
544
521
  #
545
522
  # High-level algorithm:
546
523
  #
@@ -554,7 +531,11 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
554
531
  #
555
532
  # - Put all encodings into a "todo" list.
556
533
  #
557
- # - Sort todo list by decreasing gain (for stability).
534
+ # - Sort todo list (for stability) by width_sort_key(), which is a tuple
535
+ # of the following items:
536
+ # * The "width" of the encoding.
537
+ # * The characteristic bitmap of the encoding, with higher-numbered
538
+ # columns compared first.
558
539
  #
559
540
  # - Make a priority-queue of the gain from combining each two
560
541
  # encodings in the todo list. The priority queue is sorted by
@@ -575,16 +556,7 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
575
556
  #
576
557
  # The output is then sorted for stability, in the following way:
577
558
  # - The VarRegionList of the input is kept intact.
578
- # - All encodings are sorted before the main algorithm, by
579
- # gain_key_sort(), which is a tuple of the following items:
580
- # * The gain of the encoding.
581
- # * The characteristic bitmap of the encoding, with higher-numbered
582
- # columns compared first.
583
- # - The VarData is sorted by width_sort_key(), which is a tuple
584
- # of the following items:
585
- # * The "width" of the encoding.
586
- # * The characteristic bitmap of the encoding, with higher-numbered
587
- # columns compared first.
559
+ # - The VarData is sorted by the same width_sort_key() used at the beginning.
588
560
  # - Within each VarData, the items are sorted as vectors of numbers.
589
561
  #
590
562
  # Finally, each VarData is optimized to remove the empty columns and
@@ -626,7 +598,7 @@ def VarStore_optimize(self, use_NO_VARIATION_INDEX=True, quantization=1):
626
598
  front_mapping[(major << 16) + minor] = row
627
599
 
628
600
  # Prepare for the main algorithm.
629
- todo = sorted(encodings.values(), key=_Encoding.gain_sort_key)
601
+ todo = sorted(encodings.values(), key=_Encoding.width_sort_key)
630
602
  del encodings
631
603
 
632
604
  # Repeatedly pick two best encodings to combine, and combine them.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fonttools
3
- Version: 4.55.8
3
+ Version: 4.56.0
4
4
  Summary: Tools to manipulate font files
5
5
  Home-page: http://github.com/fonttools/fonttools
6
6
  Author: Just van Rossum
@@ -391,6 +391,15 @@ Have fun!
391
391
  Changelog
392
392
  ~~~~~~~~~
393
393
 
394
+ 4.56.0 (released 2025-02-07)
395
+ ----------------------------
396
+
397
+ - [varStore] Sort the input todo list with the same sorting key used for the opimizer's output (#3767).
398
+ - [otData] Fix DeviceTable's ``DeltaValue`` repeat value which caused a crash after importing from XML and then compiling a GPOS containing Device tables (#3758).
399
+ - [feaLib] Make ``FeatureLibError`` pickleable, so client can e.g. use feaLib to can compile features in parallel with multiprocessing (#3762).
400
+ - [varLib/gvar] Removed workaround for old, long-fixed macOS bug about composite glyphs with all zero deltas (#1381, #1788).
401
+ - [Docs] Updated ttLib documentation, beefed up TTFont and TTGlyphSet explanations (#3720).
402
+
394
403
  4.55.8 (released 2025-01-29)
395
404
  ----------------------------
396
405
 
@@ -1,5 +1,5 @@
1
- fonttools-4.55.8.data/data/share/man/man1/ttx.1,sha256=cLbm_pOOj1C76T2QXvDxzwDj9gk-GTd5RztvTMsouFw,5377
2
- fontTools/__init__.py,sha256=CuZHJCf7O2-m_LL1L1feXyFbleKXAuCfO3aRPXp4qsE,183
1
+ fonttools-4.56.0.data/data/share/man/man1/ttx.1,sha256=cLbm_pOOj1C76T2QXvDxzwDj9gk-GTd5RztvTMsouFw,5377
2
+ fontTools/__init__.py,sha256=_orqitJ6zKfuWG-XX0I6vuq1MhBXcEAA8-wdaVMksIo,183
3
3
  fontTools/help.py,sha256=bAjatvIhV7TJyXI7WhsxdYO4YVlhScZXu_kRtHANEPo,1125
4
4
  fontTools/afmLib.py,sha256=1MagIItOzRV4vV5kKPxeDZbPJsfxLB3wdHLFkQvl0uk,13164
5
5
  fontTools/unicode.py,sha256=ZZ7OMmWvIyV1IL1k6ioTzaRAh3tUvm6gvK7QgFbOIHY,1237
@@ -12,7 +12,7 @@ fontTools/feaLib/builder.py,sha256=y7t8_q0-PiPoLpXZCfThx1SmvF-ZpDDyVe8605FzaL4,7
12
12
  fontTools/feaLib/__init__.py,sha256=jlIru2ghxvb1HhC5Je2BCXjFJmFQlYKpruorPoz3BvQ,213
13
13
  fontTools/feaLib/lexer.c,sha256=vQ4myMvJqvp8rdY6YeEQJHM2Crw_eFajkHWefik884Q,750756
14
14
  fontTools/feaLib/lexer.py,sha256=emyMPmRoqNZkzxnJyI6JRCCtXrbCOFofwa9O6ABGLiw,11121
15
- fontTools/feaLib/error.py,sha256=Tq2dZUlCOyLfjTr3qibsT2g9t-S_JEf6bKgyNX55oCE,643
15
+ fontTools/feaLib/error.py,sha256=Bz_5tNcNVcY7_nrAmFlQNhQldtqZWd8WUGQ2E3PWhZo,648
16
16
  fontTools/feaLib/lexer.cpython-312-aarch64-linux-musl.so,sha256=LknPi_oNmgMq3GaUHCm715_IFIDpRhS02rwmAWb_zgI,1081784
17
17
  fontTools/feaLib/parser.py,sha256=wbfG_-rqrn2RWMRQMlR3-uaiM9k4_mzCVF-wPLr00rQ,98466
18
18
  fontTools/feaLib/ast.py,sha256=3DU5NKXesyNCVu5wcebGlnvwdMf0_NKrPgOvS0FrWSg,73800
@@ -71,7 +71,7 @@ fontTools/misc/bezierTools.c,sha256=tIJLZkz3M1Lsc_dg1ApLWmdOezdsNt2tXpuk3c3Dclo,
71
71
  fontTools/misc/loggingTools.py,sha256=2uXks8fEnBjdgJEcxMLvD77-lbOPto3neJ86bMqV_qM,19898
72
72
  fontTools/misc/dictTools.py,sha256=VxjarsGJuk_wa3z29FSCtKZNCFfXtMBiNEu0RPAlpDk,2417
73
73
  fontTools/misc/lazyTools.py,sha256=BC6MmF-OzJ3GrBD8TYDZ-VCSN4UOx0pN0r3oF4GSoiw,1020
74
- fontTools/misc/testTools.py,sha256=eLKDK01zFCt2McwEl8wB5S4v1NoT6WCixhD-mElMZDs,6933
74
+ fontTools/misc/testTools.py,sha256=_JdQXAtThRxXKv8hHT2Arh6ezADIZyRJ8nO909A1bYE,7001
75
75
  fontTools/misc/macRes.py,sha256=GT_pnfPw2NCvvOF86nHLAnOtZ6SMHqEuLntaplXzvHM,8579
76
76
  fontTools/misc/cliTools.py,sha256=qCznJMLCQu3ZHQD_4ctUnr3TkfAUdkGl-UuxZUrppy0,1862
77
77
  fontTools/misc/plistlib/__init__.py,sha256=1HfhHPt3As6u2eRSlFfl6XdnXv_ypQImeQdWIw6wK7Y,21113
@@ -101,9 +101,9 @@ fontTools/cffLib/width.py,sha256=IqGL0CLyCZqi_hvsHySG08qpYxS3kaqW-tsAT-bjHV4,607
101
101
  fontTools/cffLib/CFF2ToCFF.py,sha256=pvwh6qxJ0D7c4xgXBcyAdmZGzpTiywMy45-jjp7dKck,6088
102
102
  fontTools/cffLib/transforms.py,sha256=kHBnYQmcJBLIMUC6Uws4eor2mJiNNHiR_eRePXHDPC8,17371
103
103
  fontTools/varLib/builder.py,sha256=mSKOCcnnw-WzmZs15FayoqCDh77Ts7o9Tre9psh8CUc,6609
104
- fontTools/varLib/__init__.py,sha256=RGQ1bNPr9UcGeJ3mSAwctZbJJ-avZL1brjeAukRljEA,53983
104
+ fontTools/varLib/__init__.py,sha256=Y3Yx5TlD6wN6GImZfrHsetdZJD4mH6p5VC8VU12ucMg,53391
105
105
  fontTools/varLib/models.py,sha256=sj_ENljh_qcMbfYzRIOlRgHq6tFOmL02Wv6WO8uofis,22398
106
- fontTools/varLib/varStore.py,sha256=RrBoEmNWCcsaL7CFZnzrcl26URVekUqTN4qoOy81eVQ,25160
106
+ fontTools/varLib/varStore.py,sha256=gE3mrrL5aEIdMkIbOLI5NcElnP2IThC6NzQCjR0fhxU,24050
107
107
  fontTools/varLib/interpolatableHelpers.py,sha256=lXd7kwfIVl-4opd-vxCDhf48RnJ7IQKv_uuFQM_6vaU,11496
108
108
  fontTools/varLib/interpolatablePlot.py,sha256=w393P6mGLRhYkIjSxMww3qyoYxAUZzCXlmPBbI_84C0,44375
109
109
  fontTools/varLib/iup.py,sha256=mKq_GRWuUg4yTmw2V32nu0v2r-SzzN7xS7rIbV0mYuc,14984
@@ -181,7 +181,7 @@ fontTools/ttLib/__main__.py,sha256=3yxwadpQ5YTM27RXqG3sFE3EaOSFLQVHaUUH9P0qrSw,3
181
181
  fontTools/ttLib/ttGlyphSet.py,sha256=oq4u8OpTsKxR9ThOomNBJhOA1B9NxYK__Shkx6NIkHo,17853
182
182
  fontTools/ttLib/standardGlyphOrder.py,sha256=7AY_fVWdtwZ4iv5uWdyKAUcbEQiSDt1lN4sqx9xXwE0,5785
183
183
  fontTools/ttLib/ttVisitor.py,sha256=_tah4C42Tv6Pm9QeLNQwwVCxqI4VNEAqYCbmThp6cvY,1025
184
- fontTools/ttLib/ttFont.py,sha256=UXPMV4c5pctOWNygu2F6_kR6FFE9zWLLOGFjh9282WU,40976
184
+ fontTools/ttLib/ttFont.py,sha256=llMtJ3VnzRUEyHk606_ElVty3J80E9BHbJnWamB_lO0,41024
185
185
  fontTools/ttLib/macUtils.py,sha256=lj3oeFpyjV7ko_JqnluneITmAtlc119J-vwTTg2s73A,1737
186
186
  fontTools/ttLib/tables/V_O_R_G_.py,sha256=Cn3OxjVtcO-Uvp61P5c2336V9iEbuGr6vWAXnSIaihk,5965
187
187
  fontTools/ttLib/tables/J_S_T_F_.py,sha256=Q9TEf3OuyDIxZlmoz9a3c-mDMlJK6YBQ9KcYmiwFRbU,315
@@ -232,13 +232,13 @@ fontTools/ttLib/tables/_p_o_s_t.py,sha256=bTywskWvLwUPvSAa1oyWdUEq6upPziMDGvYT59
232
232
  fontTools/ttLib/tables/sbixGlyph.py,sha256=tjEUPVRfx6gr5yme8UytGTtVrimKN5qmbzT1GZPjXiM,5796
233
233
  fontTools/ttLib/tables/DefaultTable.py,sha256=cOtgkLWPY9qmOH2BSPt4c4IUSdANWTKx2rK1CTxQ4h0,1487
234
234
  fontTools/ttLib/tables/T_S_I_P_.py,sha256=-il2ucTBOghVBY7cmleHdLZc3W3CKh7-iPPT0A3KBzk,341
235
- fontTools/ttLib/tables/otTraverse.py,sha256=oTr7nA7u7kEltLAhl4Kfl1RPD8O2_bKaoXa5l0hkRVA,5497
235
+ fontTools/ttLib/tables/otTraverse.py,sha256=HznEVAlVf_8eyqjsO2edgELtMlXnjnUqccK3PytvVUE,5518
236
236
  fontTools/ttLib/tables/T_S_I_D_.py,sha256=TsdX-G2xxVQO9sSE1wE_xDRx-gor5YiXTHeUthMwCPY,341
237
237
  fontTools/ttLib/tables/_m_a_x_p.py,sha256=cIDIZWse9czwwsnlxIh3qwgwaXbt7PQAjXKAcmMDspY,5264
238
238
  fontTools/ttLib/tables/_p_r_e_p.py,sha256=CcKr4HrswkupLmbJdrJLTM-z9XgLefQyv8467j9V0zs,427
239
239
  fontTools/ttLib/tables/F_F_T_M_.py,sha256=_450vdbEH7Y-0_rOwb3Q0hg-Qq2W8C_sHljy7rZtqqM,1683
240
240
  fontTools/ttLib/tables/_c_v_a_r.py,sha256=35ayk2kX1pcLGwyx0y4I1l-r7LHgdKv0ulVx8oBPteI,3527
241
- fontTools/ttLib/tables/otTables.py,sha256=aCWou5-h4uhH2nPM2jwyD6OfoPhtnsOXm_ZefAawp4I,96937
241
+ fontTools/ttLib/tables/otTables.py,sha256=wgmNkSSLbZOkT_DrF7Y-ki8OGW7SC0A7Ue6OHUJQC4E,96972
242
242
  fontTools/ttLib/tables/_f_v_a_r.py,sha256=rV33H2BgHUl3Wuydsou1G-Hi4uASBppWaLj3FMmiLjs,8837
243
243
  fontTools/ttLib/tables/S_V_G_.py,sha256=vT6QTW5ArtskVUxnPEH_ZxKz4DF4v1pKbylN6DG0R3o,7676
244
244
  fontTools/ttLib/tables/_s_b_i_x.py,sha256=tkkKbNKNYkUhZJuN0kl7q37x5KK5OovB06y28obPV6A,4865
@@ -255,7 +255,7 @@ fontTools/ttLib/tables/_h_e_a_d.py,sha256=yY2GTFq6Mn6nN8EegbMVJRMUWIqDYFln3FhTk3
255
255
  fontTools/ttLib/tables/_n_a_m_e.py,sha256=LYySKOxLr_t5dYKeNTqA8pozf8MfI1R_jS0SCHNViq0,41063
256
256
  fontTools/ttLib/tables/_g_v_a_r.py,sha256=9T8XwBWaWyJINSeDhLR-g9oPiKLXJvlhThpXL0YuSs0,10773
257
257
  fontTools/ttLib/tables/T_S_I__5.py,sha256=MMbUY3My4V5YTagNcSCu0q9wKzskG9nkUhOR0dp-GAI,1586
258
- fontTools/ttLib/tables/otData.py,sha256=esZs8p10aaJjioueGZ5plMou2LnzhJeuD-q1AOA-Kek,197260
258
+ fontTools/ttLib/tables/otData.py,sha256=-XXRwdVfP-Wz7oBjMPpku0A0QH9lw_fFGNzZlt9N0mo,197262
259
259
  fontTools/ttLib/tables/_g_a_s_p.py,sha256=YvhAVDvdssN2fjPMTfSrO4WBCfTuh9T2cU5zquDVnSw,2203
260
260
  fontTools/ttLib/tables/G__l_o_c.py,sha256=5DsxGzaG7HyJVvLlKQeff1lXt-XPWaHNNaf-EYwsKh4,2685
261
261
  fontTools/ttLib/tables/_c_i_d_g.py,sha256=yt8rVIadpJSDUCoVH4dZetNiy0Azm5ESAxHjB2BX_eA,913
@@ -321,9 +321,9 @@ fontTools/merge/__main__.py,sha256=hDx3gfbUBO83AJKumSEhiV-xqNTJNNgK2uFjazOGTmw,9
321
321
  fontTools/merge/cmap.py,sha256=_oCBnZfm5M7ebYRJnOYw5wUEICFmdR6kMUe1w6jsVuM,5545
322
322
  fontTools/merge/tables.py,sha256=uBD1-XqOCDzFxp0D7ZDvrMRdd8R7eAm58WtYKhz-m5w,10640
323
323
  fontTools/config/__init__.py,sha256=Ti5jpozjMqp5qhnrmwNcWI6b9uvHzhZlbWXHTqVZlGI,2643
324
- fonttools-4.55.8.dist-info/LICENSE,sha256=Z4cgj4P2Wcy8IiOy_elS_6b36KymLxqKK_W8UbsbI4M,1072
325
- fonttools-4.55.8.dist-info/WHEEL,sha256=PpdAC_u82ZZfnoBRYR2EWV66XvZ87N44YNPPBTE-uok,113
326
- fonttools-4.55.8.dist-info/top_level.txt,sha256=rRgRylrXzekqWOsrhygzib12pQ7WILf7UGjqEwkIFDM,10
327
- fonttools-4.55.8.dist-info/METADATA,sha256=MiUIvxVITe5f3ZDPJsVR8esUSUHMbTgUqamI9YF5fuk,101219
328
- fonttools-4.55.8.dist-info/RECORD,,
329
- fonttools-4.55.8.dist-info/entry_points.txt,sha256=8kVHddxfFWA44FSD4mBpmC-4uCynQnkoz_9aNJb227Y,147
324
+ fonttools-4.56.0.dist-info/LICENSE,sha256=Z4cgj4P2Wcy8IiOy_elS_6b36KymLxqKK_W8UbsbI4M,1072
325
+ fonttools-4.56.0.dist-info/WHEEL,sha256=PpdAC_u82ZZfnoBRYR2EWV66XvZ87N44YNPPBTE-uok,113
326
+ fonttools-4.56.0.dist-info/top_level.txt,sha256=rRgRylrXzekqWOsrhygzib12pQ7WILf7UGjqEwkIFDM,10
327
+ fonttools-4.56.0.dist-info/METADATA,sha256=mHbq7JOdQyQ3-vtlnRALzKhNmCpZgtAPIWzHOxG2txQ,101907
328
+ fonttools-4.56.0.dist-info/RECORD,,
329
+ fonttools-4.56.0.dist-info/entry_points.txt,sha256=8kVHddxfFWA44FSD4mBpmC-4uCynQnkoz_9aNJb227Y,147