File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -363,7 +363,6 @@ def __iter__(self) -> Iterator[str]:
363363 ("disable-platform-guessing" , None , "Disable platform guessing" ),
364364 ("debug" , None , "Debug logging" ),
365365 ]
366- + [("add-imaging-libs=" , None , "Add libs to _imaging build" )]
367366 )
368367
369368 @staticmethod
@@ -374,7 +373,6 @@ def initialize_options(self) -> None:
374373 self .disable_platform_guessing = self .check_configuration (
375374 "platform-guessing" , "disable"
376375 )
377- self .add_imaging_libs = ""
378376 build_ext .initialize_options (self )
379377 for x in self .feature :
380378 setattr (self , f"disable_{ x } " , self .check_configuration (x , "disable" ))
@@ -901,7 +899,6 @@ def build_extensions(self) -> None:
901899 # core library
902900
903901 libs : list [str | bool | None ] = []
904- libs .extend (self .add_imaging_libs .split ())
905902 defs : list [tuple [str , str | None ]] = []
906903 if feature .get ("tiff" ):
907904 libs .append (feature .get ("tiff" ))
You can’t perform that action at this time.
0 commit comments