From 64b2dd7f51b4f2b6caa3e91a462863ab4a0d97be Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 29 Aug 2023 09:08:35 +0200 Subject: [PATCH] removed duplicate validate method contributes to CURA-10951 --- conanfile.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index fb3f93f..e0f1fe8 100644 --- a/conanfile.py +++ b/conanfile.py @@ -98,10 +98,6 @@ def configure(self): self.options.rm_safe("fPIC") self.options["cpython"].shared = True - def validate(self): - if self.settings.compiler.get_safe("cppstd"): - check_min_cppstd(self, 17) - def generate(self): pp = self.python_requires["pyprojecttoolchain"].module.PyProjectToolchain(self) pp.blocks["tool_sip_project"].values["sip_files_dir"] = str(Path("python").as_posix())