From 32fbe748727a5b096c06d091bc08324398decbe8 Mon Sep 17 00:00:00 2001 From: David Glick Date: Sat, 14 Oct 2023 12:05:26 -0700 Subject: [PATCH] Test docs on Python 3.8 instead of 3.7 --- test-no-uncommitted-doc-changes.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test-no-uncommitted-doc-changes.in b/test-no-uncommitted-doc-changes.in index 43e15b81f1..c2ad9929e4 100644 --- a/test-no-uncommitted-doc-changes.in +++ b/test-no-uncommitted-doc-changes.in @@ -13,12 +13,12 @@ function red { echo "$RED $1 $RESET" } -if [ "$PLONE_VERSION" == "5.2" ] && [ "$PYTHON_VERSION" == '3.7' ]; then - echo "Running check for undocumented changes for Plone 5.2.x on Python 3.7" +if [ "$PLONE_VERSION" == "5.2" ] && [ "$PYTHON_VERSION" == '3.8' ]; then + echo "Running check for undocumented changes for Plone 5.2.x on Python 3.8" else # request/response dumps have known differences for Plone 5 # => skip, we can't have the Plone 5 build fail because of those - echo "Skipping checks for undocumented changes for everything except Plone 5.2.x on Python 3.7" + echo "Skipping checks for undocumented changes for everything except Plone 5.2.x on Python 3.8" exit 0 fi