This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 00a3df160d0 Also update core version == in pyproject.toml when
updating version (#48742)
00a3df160d0 is described below
commit 00a3df160d0cf6b8c2a90b30f32551d22547ff56
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Apr 3 16:20:37 2025 +0200
Also update core version == in pyproject.toml when updating version (#48742)
---
scripts/ci/pre_commit/update_versions.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/ci/pre_commit/update_versions.py
b/scripts/ci/pre_commit/update_versions.py
index 9f272f32dde..89aaafe21e7 100755
--- a/scripts/ci/pre_commit/update_versions.py
+++ b/scripts/ci/pre_commit/update_versions.py
@@ -47,6 +47,7 @@ REPLACEMENTS: dict[str, list[str]] = {
r"(`apache/airflow:(?:slim-)?)[0-9].*?((?:-pythonX.Y)?`)":
["docker-stack-docs/README.md"],
r"(\(Assuming Airflow version `).*(`\))": ["docker-stack-docs/README.md"],
r"(^version = \").*(\"$)": ["pyproject.toml",
"airflow-core/pyproject.toml"],
+ r"(^.*\"apache-airflow-core==).*(\",$)": ["pyproject.toml"],
}