Skip to content

Commit

Permalink
Bump versions for dependencies in conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAce committed Dec 8, 2023
1 parent 44355aa commit 600326c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,13 @@ def config_options(self):
self.options["hdf5"].with_zlib = self.options.with_zlib

def requirements(self):
self.requires("hdf5/[>=1.10.0 <=1.14.2]", transitive_headers=True, transitive_libs=True)
self.requires("hdf5/[>=1.10.0 <=1.14.3]", transitive_headers=True, transitive_libs=True)
if self.options.get_safe('with_eigen'):
self.requires("eigen/[>=3.3.7 <=3.4.0]", transitive_headers=True)
if self.options.get_safe('with_spdlog'):
self.requires("spdlog/[>=1.6.0 <=1.12.0]", transitive_headers=True, transitive_libs=True)
if self.options.with_zlib:
self.requires("zlib/[>=1.2.11 <=1.3.0]", transitive_headers=True, transitive_libs=True)

self.requires("zlib/[>=1.2.11 <2]", transitive_headers=True, transitive_libs=True)
def layout(self):
basic_layout(self)

Expand Down

0 comments on commit 600326c

Please sign in to comment.