From 428bfb41a9e1d631615ecd822754aa8182dc8582 Mon Sep 17 00:00:00 2001 From: ftCLI Date: Sun, 28 May 2023 12:14:59 +0200 Subject: [PATCH] Version 0.9.16 --- ftCLI/Lib/utils/subsetter.py | 3 +-- ftCLI/commands/ftcli_utils.py | 2 +- setup.py | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ftCLI/Lib/utils/subsetter.py b/ftCLI/Lib/utils/subsetter.py index 9e3b340..10941ff 100644 --- a/ftCLI/Lib/utils/subsetter.py +++ b/ftCLI/Lib/utils/subsetter.py @@ -4,7 +4,6 @@ class BaseSubsetter(Subsetter): def __init__(self, glyph_ids: list): super().__init__() - self.glyph_ids = glyph_ids self.options.drop_tables = [] self.options.passthrough_tables = True self.options.name_IDs = "*" @@ -14,4 +13,4 @@ def __init__(self, glyph_ids: list): self.options.hinting = False self.options.notdef_glyph = True self.options.notdef_outline = True - self.glyph_ids_requested = self.glyph_ids + self.glyph_ids_requested = glyph_ids diff --git a/ftCLI/commands/ftcli_utils.py b/ftCLI/commands/ftcli_utils.py index 5861187..d7d7695 100644 --- a/ftCLI/commands/ftcli_utils.py +++ b/ftCLI/commands/ftcli_utils.py @@ -18,9 +18,9 @@ from ftCLI.Lib.utils.click_tools import ( add_file_or_path_argument, add_common_options, - generic_error_message, file_saved_message, file_not_changed_message, + generic_error_message, generic_info_message, ) diff --git a/setup.py b/setup.py index 0c78c24..8d6bd94 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="font-CLI", - version="0.9.16.dev0", + version="0.9.16", description="A set of command line tools to edit fonts with FontTools", long_description=long_description, long_description_content_type="text/markdown", @@ -18,14 +18,14 @@ include_package_data=True, entry_points={"console_scripts": ["ftcli=ftCLI.ftCLI:main"]}, install_requires=[ - "fonttools>=4.39.3", "afdko==3.9.5", + "fonttools>=4.39.3", "beziers==0.5.0", "brotli==1.0.9", "click==8.1.3", "cffsubr==0.2.9.post1", "dehinter==4.0.0", - "pathvalidate==2.5.2", + "pathvalidate>=3.0.0", "rich>=13.3.5", "skia-pathops==0.7.4", "ttfautohint-py==0.5.1",