From 845bfda5997d9dd40af478ca4aaa7597866be7e3 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 3 Mar 2021 13:50:14 -0500 Subject: [PATCH] fix: macos11 universal naming corrected (#614) --- bin/update_pythons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update_pythons.py b/bin/update_pythons.py index f787a2b9..9fa0a234 100755 --- a/bin/update_pythons.py +++ b/bin/update_pythons.py @@ -181,7 +181,7 @@ class CPythonVersions: self.versions_dict[version] = uri def update_version_macos(self, identifier: str, spec: Specifier) -> Optional[ConfigMacOS]: - file_idents = ("macos11.0.pkg", "macosx10.9.pkg", "macosx10.6.pkg") + file_idents = ("macos11.pkg", "macosx10.9.pkg", "macosx10.6.pkg") sorted_versions = sorted(v for v in self.versions_dict if spec.contains(v)) for version in reversed(sorted_versions):