From a98675632aad176afb3d21c1eca004f540c3cf31 Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 15 Nov 2023 11:48:50 +0100 Subject: [PATCH] [GR-49632] Fix compat version for python formatting It was introduced in 7.1.3 --- src/mx/_impl/mx.py | 2 +- src/mx/_impl/mx_compat.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mx/_impl/mx.py b/src/mx/_impl/mx.py index 4f6be4c1..f858e068 100755 --- a/src/mx/_impl/mx.py +++ b/src/mx/_impl/mx.py @@ -19249,7 +19249,7 @@ def alarm_handler(signum, frame): abort(1, killsig=signal.SIGINT) # The version must be updated for every PR (checked in CI) and the comment should reflect the PR's issue -version = VersionSpec("7.2.0") # mx fetch-jdk provider:// +version = VersionSpec("7.2.1") # [GR-49632] Fix compat version for python formatting _mx_start_datetime = datetime.utcnow() _last_timestamp = _mx_start_datetime diff --git a/src/mx/_impl/mx_compat.py b/src/mx/_impl/mx_compat.py index f521cfe1..6e05c9a3 100644 --- a/src/mx/_impl/mx_compat.py +++ b/src/mx/_impl/mx_compat.py @@ -756,10 +756,10 @@ def spotbugs_version(self): return "4.7.3_JDK21_BACKPORT" -class MxCompatibility704(MxCompatibility6271): +class MxCompatibility713(MxCompatibility6271): @staticmethod def version(): - return mx.VersionSpec("7.0.4") + return mx.VersionSpec("7.1.3") def gate_run_pyformat(self) -> bool: return True