Skip to content

Commit

Permalink
seqan3: bump min GCC version
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 11, 2024
1 parent 55ae841 commit 5a07080
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/seqan3/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def _min_cppstd(self):

@property
def _compilers_minimum_version(self):
return {"gcc": "10"}
if Version(self.version) < "3.3.0":
return {"gcc": "10"}
return {"gcc": "11"}

def layout(self):
basic_layout(self, src_folder="src")
Expand Down

0 comments on commit 5a07080

Please sign in to comment.