From 16e224526c9ab772aeefa107c8aaba6fa5c38f6f Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Wed, 9 Oct 2024 16:22:29 +0200 Subject: [PATCH] No need for zlib compatibility --- conanfile.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/conanfile.py b/conanfile.py index db32c91..e1f9143 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,14 +5,7 @@ import pathlib import subprocess from rules_support import PluginBranchInfo -import re - -def compatibility(os, compiler, compiler_version): - # On macos fallback to zlib apple-clang 13 - if os == "Macos" and compiler == "apple-clang" and bool(re.match("14.*", compiler_version)): - print("Compatibility match") - return ["zlib/1.3:compiler.version=13"] - return None + class ExamplePluginsConan(ConanFile): """Class to package ExamplePlugins using conan