Skip to content

Commit

Permalink
Merge pull request #15 from scipopt/minimum-compiler-version
Browse files Browse the repository at this point in the history
Require GCC 8 and AppleClang 11 due to the usage of std::filesystem
  • Loading branch information
hedtke authored Oct 16, 2023
2 parents 8913d97 + faa80e7 commit e845dd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def _min_cppstd(self):
@property
def _compilers_minimum_version(self):
return {
"gcc": "7",
"gcc": "8",
"clang": "7",
"apple-clang": "10",
"apple-clang": "11",
"msvc": "192"
}

Expand Down

0 comments on commit e845dd8

Please sign in to comment.