Skip to content

Commit d990c19

Browse files
clssntobifalk
authored andcommitted
fable: Relax version fmt version requirement
Fable was designed to be an independently usable library for configuration de/serialization and validation. As a library it should be as flexible as possible regarding its dependencies. Therefore the requirement was relaxed to >=6.2.0. Resolves #50.
1 parent 4a924c2 commit d990c19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fable/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Fable(ConanFile):
2828
]
2929
requires = [
3030
"boost/[>=1.65.1]",
31-
"fmt/[~=6.2.0]",
31+
"fmt/[>=6.2.0]",
3232
"nlohmann_json/[~=3.9.1]",
3333
]
3434

runtime/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CloeRuntime(ConanFile):
3333
requires = [
3434
"boost/[>=1.65.1]",
3535
"inja/[~=3.0.0]",
36-
"spdlog/[~=1.5.0]",
36+
"spdlog/[~=1.9.0]",
3737
"incbin/[~=1.74.0]@cloe/stable",
3838
]
3939

0 commit comments

Comments
 (0)