From 8c996799b0ae3d6cccf8a5f25744deb6640adb9e Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Tue, 18 Jun 2024 12:12:04 -0400 Subject: [PATCH] Fix HistoricalStdlibVersions install to version (#3930) * fix hsv install to version * Update test/runtests.jl Co-authored-by: Dilum Aluthge --------- Co-authored-by: Dilum Aluthge --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 61300f9656..0d6207d70a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -42,7 +42,7 @@ Logging.with_logger((islogging || Pkg.DEFAULT_IO[] == devnull) ? Logging.Console iob = IOBuffer() Pkg.activate(; temp = true) try - Pkg.add("HistoricalStdlibVersions", io=iob) # Needed for custom julia version resolve tests + Pkg.add(name="HistoricalStdlibVersions", version="1.2", uuid="6df8b67a-e8a0-4029-b4b7-ac196fe72102", io=iob) # Needed for custom julia version resolve tests catch println(String(take!(iob))) rethrow()