Skip to content

Commit

Permalink
Bump Catch2 and pybind11 dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Jan 1, 2024
1 parent d33f06c commit e869344
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bindings/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()
FetchContent_Declare(
pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.10.4
GIT_TAG v2.11.1
GIT_SHALLOW ON
${find_pkg_args})
FetchContent_MakeAvailable(pybind11)
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class CompressorRecipe(ConanFile):

def requirements(self):
self.requires("mimalloc/2.1.2")
self.requires("catch2/3.4.0")
self.requires("pybind11/2.10.4")
self.requires("catch2/3.5.1")
self.requires("pybind11/2.11.1")
self.requires("fmt/10.1.1")

def layout(self):
Expand Down
6 changes: 3 additions & 3 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Required minimum versions for dependencies
set(fmt_min_version "10.1")
set(mimalloc_min_version "2.1")
set(catch2_min_version "3.4")
set(catch2_min_version "3.5")

# --- fmt lib ---
set(find_pkg_args "")
Expand Down Expand Up @@ -106,7 +106,7 @@ if(SLANG_USE_MIMALLOC)
endif()

if(mimalloc_FOUND)
message(STATUS "Found system mimalloc version: ${Catch2_VERSION}")
message(STATUS "Found system mimalloc version: ${mimalloc_VERSION}")
else()
message(STATUS "Using remote mimalloc library")
if(IS_DIRECTORY "${mimalloc_SOURCE_DIR}")
Expand Down Expand Up @@ -135,7 +135,7 @@ if(SLANG_INCLUDE_TESTS)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v3.4.0
GIT_TAG v3.5.1
GIT_SHALLOW ON
${find_pkg_args})
FetchContent_MakeAvailable(Catch2)
Expand Down

0 comments on commit e869344

Please sign in to comment.