From af22593326fd0a75044ed35f50de507b6744e33a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 27 Nov 2024 14:42:57 +0100 Subject: [PATCH] Remove version limit --- conanfile.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index 6fce951def..6d26112696 100644 --- a/conanfile.py +++ b/conanfile.py @@ -273,10 +273,6 @@ class CuraConan(ConanFile): copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder) def validate(self): - version = self.conf.get("user.cura:version", default = self.version, check_type = str) - if version and Version(version) <= Version("4"): - raise ConanInvalidConfiguration("Only versions 5+ are support") - if self.options.i18n_extract and self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str): raise ConanInvalidConfiguration("Unable to extract translations on Windows without Bash installed")