Skip to content

Commit

Permalink
Fixed Version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Aug 8, 2022
1 parent 84f68aa commit 3cebad6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/jfalcou-eve/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from conan import ConanFile, tools
from conan.tools.scm import Version
from conans.errors import ConanInvalidConfiguration

required_conan_version = ">=1.33.0"
Expand Down Expand Up @@ -26,7 +27,7 @@ def _min_cppstd(self):

@property
def _compilers_minimum_version(self):
if tools.scm.Version(self.version) >= "2022.03.0":
if Version(self.version) >= "2022.03.0":
return {
"gcc": "11",
"Visual Studio": "16.9",
Expand Down

0 comments on commit 3cebad6

Please sign in to comment.