Skip to content

Commit 428bfb4

Browse files
committed
Version 0.9.16
1 parent 0c041e7 commit 428bfb4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

ftCLI/Lib/utils/subsetter.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
class BaseSubsetter(Subsetter):
55
def __init__(self, glyph_ids: list):
66
super().__init__()
7-
self.glyph_ids = glyph_ids
87
self.options.drop_tables = []
98
self.options.passthrough_tables = True
109
self.options.name_IDs = "*"
@@ -14,4 +13,4 @@ def __init__(self, glyph_ids: list):
1413
self.options.hinting = False
1514
self.options.notdef_glyph = True
1615
self.options.notdef_outline = True
17-
self.glyph_ids_requested = self.glyph_ids
16+
self.glyph_ids_requested = glyph_ids

ftCLI/commands/ftcli_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
from ftCLI.Lib.utils.click_tools import (
1919
add_file_or_path_argument,
2020
add_common_options,
21-
generic_error_message,
2221
file_saved_message,
2322
file_not_changed_message,
23+
generic_error_message,
2424
generic_info_message,
2525
)
2626

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="font-CLI",
10-
version="0.9.16.dev0",
10+
version="0.9.16",
1111
description="A set of command line tools to edit fonts with FontTools",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
@@ -18,14 +18,14 @@
1818
include_package_data=True,
1919
entry_points={"console_scripts": ["ftcli=ftCLI.ftCLI:main"]},
2020
install_requires=[
21-
"fonttools>=4.39.3",
2221
"afdko==3.9.5",
22+
"fonttools>=4.39.3",
2323
"beziers==0.5.0",
2424
"brotli==1.0.9",
2525
"click==8.1.3",
2626
"cffsubr==0.2.9.post1",
2727
"dehinter==4.0.0",
28-
"pathvalidate==2.5.2",
28+
"pathvalidate>=3.0.0",
2929
"rich>=13.3.5",
3030
"skia-pathops==0.7.4",
3131
"ttfautohint-py==0.5.1",

0 commit comments

Comments
 (0)