raulcd commented on code in PR #13427:
URL: https://github.com/apache/arrow/pull/13427#discussion_r907435727


##########
dev/merge_arrow_pr.py:
##########
@@ -139,16 +139,24 @@ def __init__(self, jira_con, jira_id, project, cmd):
     def current_fix_versions(self):
         return self.issue.fields.fixVersions
 
+    @classmethod
+    def sort_versions(cls, versions):
+        def version_tuple(x):
+            version = x.name
+            # Parquet versions are something like cpp-1.2.0
+            if "-" in version:
+                version = version.split("-")[1]

Review Comment:
   Fixed here: 3473cb894ec1965a86436d0c0ecd1494196e5abe



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to