From 4a08160a1f582185476e2e2839f7dac8e2f73a2a Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 24 Jun 2021 10:38:19 -0700 Subject: [PATCH] Revert "Updating Catch version to latest, in hopes of resolving the GHA download issue affecting all MSVC builds." This reverts commit f4e1112dc434d0505cecad6259113f0621ecba70. It didn't help. --- tests/pure_cpp/CMakeLists.txt | 2 +- tests/test_embed/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pure_cpp/CMakeLists.txt b/tests/pure_cpp/CMakeLists.txt index 14a53f950..17be74b7f 100644 --- a/tests/pure_cpp/CMakeLists.txt +++ b/tests/pure_cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Catch 2.13.6) +find_package(Catch 2.13.2) if(CATCH_FOUND) message(STATUS "Building pure C++ tests (not depending on Python) using Catch v${CATCH_VERSION}") diff --git a/tests/test_embed/CMakeLists.txt b/tests/test_embed/CMakeLists.txt index a6f6d1b6c..c960c877a 100644 --- a/tests/test_embed/CMakeLists.txt +++ b/tests/test_embed/CMakeLists.txt @@ -7,7 +7,7 @@ if("${PYTHON_MODULE_EXTENSION}" MATCHES "pypy" OR "${Python_INTERPRETER_ID}" STR return() endif() -find_package(Catch 2.13.6) +find_package(Catch 2.13.2) if(CATCH_FOUND) message(STATUS "Building interpreter tests using Catch v${CATCH_VERSION}")