Skip to content

Commit

Permalink
tooling: Specify override=True in meta-package for overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed Apr 14, 2022
1 parent 48b358c commit e8a17a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def set_version(self):

def requirements(self):
self.requires("boost/[~=1.69]", override=True)
self.requires("fmt/[~=8.1.1]")
self.requires("inja/[~=3.3.0]")
self.requires("nlohmann_json/[~=3.10.5]")
self.requires("incbin/[~=0.88.0]@cloe/stable"),
self.requires("fmt/[~=8.1.1]", override=True)
self.requires("inja/[~=3.3.0]", override=True)
self.requires("nlohmann_json/[~=3.10.5]", override=True)
self.requires("incbin/[~=0.88.0]@cloe/stable", override=True),
requires = [
"cloe-runtime",
"cloe-models",
Expand Down

0 comments on commit e8a17a1

Please sign in to comment.