Skip to content

Commit b59488a

Browse files
committed
Update dependencies to latest versions in conanfile.py
Bumped versions for spdlog, fmt, and cpython to ensure compatibility with latest releases and receive bug fixes and improvements.
1 parent 0eb3c58 commit b59488a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conanfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ def layout(self):
115115
def requirements(self):
116116
self.requires("nlohmann_json/3.11.2", transitive_headers=True)
117117
self.requires("range-v3/0.12.0", transitive_headers=True)
118-
self.requires("spdlog/[>=1.14.1]", transitive_headers=True)
119-
self.requires("fmt/[>=11.0.2]", transitive_headers=True)
118+
self.requires("spdlog/1.15.1", transitive_headers=True)
119+
self.requires("fmt/11.1.3", transitive_headers=True)
120120
self.requires("ctre/3.7.2", transitive_headers=True)
121121
if self.options.with_apps:
122122
self.requires("docopt.cpp/0.6.3")
123123
if self.options.get_safe("with_python_bindings", False):
124-
self.requires("cpython/3.12.2")
124+
self.requires("cpython/3.12.7")
125125
self.requires("pybind11/2.11.1")
126126

127127
def build_requirements(self):

0 commit comments

Comments
 (0)