Skip to content

Commit

Permalink
Remove unneeded check
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS authored Sep 26, 2024
1 parent 1e2648e commit 2a1006d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions recipes/glaze/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ def package_id(self):
self.info.clear()

def validate(self):
# remove this block when all versions of under 2.6.3 will be removed.
if self.settings.compiler == "gcc" and Version(self.settings.compiler.version) < "11.3":
raise ConanInvalidConfiguration(
f"{self.ref} doesn't support 11.0<=gcc<11.3 due to gcc bug. Please use gcc>=11.3 and set compiler.version.(ex. compiler.version=11.3)",
)

if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
Expand Down

0 comments on commit 2a1006d

Please sign in to comment.