From 78b9db757403b2db0636f2b91491fa883384b359 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sat, 17 Dec 2022 15:08:43 -0500 Subject: [PATCH] fix: allow macosx_10_14 wheels --- pep425.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep425.nix b/pep425.nix index 5883494..99e22f6 100644 --- a/pep425.nix +++ b/pep425.nix @@ -106,7 +106,7 @@ let filtered = builtins.filter filterWheel filesWithoutSources; choose = files: let - osxMatches = [ "12_0" "11_0" "10_15" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; + osxMatches = [ "12_0" "11_0" "10_15" "10_14" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; linuxMatches = [ "manylinux1_" "manylinux2010_" "manylinux2014_" "manylinux_" "any" ]; chooseLinux = x: lib.take 1 (findBestMatches linuxMatches x); chooseOSX = x: lib.take 1 (findBestMatches osxMatches x);