Skip to content

Commit

Permalink
Version 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ftCLI committed May 28, 2023
1 parent 0c041e7 commit 428bfb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions ftCLI/Lib/utils/subsetter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "*"
Expand All @@ -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
2 changes: 1 addition & 1 deletion ftCLI/commands/ftcli_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 428bfb4

Please sign in to comment.