Skip to content

Commit

Permalink
[GR-49632] Fix compat version for python formatting
Browse files Browse the repository at this point in the history
PullRequest: mx/1713
  • Loading branch information
patrick96 committed Nov 15, 2023
2 parents e718da8 + a986756 commit 9a8658c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/mx/_impl/mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/mx/_impl/mx_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a8658c

Please sign in to comment.