File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 4
4
class BaseSubsetter (Subsetter ):
5
5
def __init__ (self , glyph_ids : list ):
6
6
super ().__init__ ()
7
- self .glyph_ids = glyph_ids
8
7
self .options .drop_tables = []
9
8
self .options .passthrough_tables = True
10
9
self .options .name_IDs = "*"
@@ -14,4 +13,4 @@ def __init__(self, glyph_ids: list):
14
13
self .options .hinting = False
15
14
self .options .notdef_glyph = True
16
15
self .options .notdef_outline = True
17
- self .glyph_ids_requested = self . glyph_ids
16
+ self .glyph_ids_requested = glyph_ids
Original file line number Diff line number Diff line change 18
18
from ftCLI .Lib .utils .click_tools import (
19
19
add_file_or_path_argument ,
20
20
add_common_options ,
21
- generic_error_message ,
22
21
file_saved_message ,
23
22
file_not_changed_message ,
23
+ generic_error_message ,
24
24
generic_info_message ,
25
25
)
26
26
Original file line number Diff line number Diff line change 7
7
8
8
setuptools .setup (
9
9
name = "font-CLI" ,
10
- version = "0.9.16.dev0 " ,
10
+ version = "0.9.16" ,
11
11
description = "A set of command line tools to edit fonts with FontTools" ,
12
12
long_description = long_description ,
13
13
long_description_content_type = "text/markdown" ,
18
18
include_package_data = True ,
19
19
entry_points = {"console_scripts" : ["ftcli=ftCLI.ftCLI:main" ]},
20
20
install_requires = [
21
- "fonttools>=4.39.3" ,
22
21
"afdko==3.9.5" ,
22
+ "fonttools>=4.39.3" ,
23
23
"beziers==0.5.0" ,
24
24
"brotli==1.0.9" ,
25
25
"click==8.1.3" ,
26
26
"cffsubr==0.2.9.post1" ,
27
27
"dehinter==4.0.0" ,
28
- "pathvalidate==2.5.2 " ,
28
+ "pathvalidate>=3.0.0 " ,
29
29
"rich>=13.3.5" ,
30
30
"skia-pathops==0.7.4" ,
31
31
"ttfautohint-py==0.5.1" ,
You can’t perform that action at this time.
0 commit comments