From 02208ac975ee6ffdf4c24770d6f8de6d070f634e Mon Sep 17 00:00:00 2001 From: Bert Hertogen Date: Sun, 5 Jan 2025 19:20:39 +0100 Subject: [PATCH] Revert --- build-on-linux.sh | 2 +- build-on-windows.ps1 | 2 +- src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-on-linux.sh b/build-on-linux.sh index ea01b3c..d9a770c 100755 --- a/build-on-linux.sh +++ b/build-on-linux.sh @@ -1,6 +1,6 @@ workingDir="./standalone-linux-64"; assets="./assets"; -version=weasyprint==63.1 +version=weasyprint==62.3 if [ -d "$workingDir" ]; then echo "*** Cleaning $workingDir" diff --git a/build-on-windows.ps1 b/build-on-windows.ps1 index 0be1e13..a88c832 100644 --- a/build-on-windows.ps1 +++ b/build-on-windows.ps1 @@ -1,6 +1,6 @@ $workingDir = "./standalone-windows-64"; $assets = "./assets"; -$version = "weasyprint==63.1" +$version = "weasyprint==62.3" if (Test-Path $workingDir) { Write-Host "*** Cleaning $workingDir" diff --git a/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs b/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs index 12127f3..be3f2b2 100755 --- a/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs +++ b/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs @@ -227,7 +227,7 @@ public async Task Version_ReturnsVersion() var result = await printer.Version(); - Assert.Contains("WeasyPrint version: 63.1", result.Version); + Assert.Contains("WeasyPrint version: 62.3", result.Version); Assert.Equal(0, result.ExitCode); Assert.False(result.HasError); }