diff --git a/conanfile.py b/conanfile.py index bd8ee1b..5cc77b7 100644 --- a/conanfile.py +++ b/conanfile.py @@ -71,7 +71,7 @@ def system_requirements(self): if versionfloat < "5.0": installer.install("libgfortran-{}-dev".format(versionfloat)) else: - installer.install("libgfortran-{}-dev".format(int(versionfloat))) + installer.install("libgfortran-{}-dev".format(int(float(versionfloat)))) if tools.os_info.is_macos and Version(self.settings.compiler.version.value) > "7.3": try: installer.install("gcc", update=True, force=True)