File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -730,8 +730,8 @@ def get_macos_aligned_version(macos_vers):
730730 try :
731731 sout , _ = cmd .communicate (b"#include <features.h>" )
732732 m = dict (re .findall (r"#define (__GLIBC__|__GLIBC_MINOR__) (\d+)" , str (sout )))
733- major = int (m [' __GLIBC__' ])
734- minor = int (m [' __GLIBC_MINOR__' ])
733+ major = int (m [" __GLIBC__" ])
734+ minor = int (m [" __GLIBC_MINOR__" ])
735735 any_glibc = False
736736 for required in [
737737 (2 , 19 ),
@@ -745,7 +745,9 @@ def get_macos_aligned_version(macos_vers):
745745 ]:
746746 if (major , minor ) >= required :
747747 (required_major , required_minor ) = required
748- config .available_features .add (f"glibc-{ required_major } .{ required_minor } " )
748+ config .available_features .add (
749+ f"glibc-{ required_major } .{ required_minor } "
750+ )
749751 any_glibc = True
750752 if any_glibc :
751753 config .available_features .add ("glibc" )
You can’t perform that action at this time.
0 commit comments