Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run python3 dev/update_mlflow_versions.py pre-release ... #10679

Merged
merged 1 commit into from
Dec 14, 2023

Conversation

mlflow-automation
Copy link
Collaborator

@mlflow-automation mlflow-automation commented Dec 13, 2023

v2.9.1...master

Code

import re

import requests

regex = re.compile(r"\(#(\d+)\)$", re.M)

resp = requests.get("https://api.github.com/repos/mlflow/mlflow/compare/v2.9.1...master")
resp.raise_for_status()
commits = resp.json()["commits"]

for commit in commits[::-1]:
    num = next(regex.finditer(commit["commit"]["message"])).group(1)
    print("- [ ]", commit["sha"], f"#{num}")

Signed-off-by: mlflow-automation <mlflow-automation@users.noreply.github.com>
Copy link

Documentation preview for 92b7547 will be available here when this CircleCI job completes successfully.

More info

Copy link

@mlflow-automation Thank you for the contribution! Could you fix the following issue(s)?

⚠ Invalid PR template

This PR does not appear to have been filed using the MLflow PR template. Please copy the PR template from here and fill it out.

@harupy harupy self-requested a review December 13, 2023 10:18
@harupy harupy merged commit 6ca7246 into branch-2.9 Dec 14, 2023
148 of 151 checks passed
@harupy harupy deleted the branch-f7ca5a54b51d4204 branch December 14, 2023 02:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants