This is an automated email from the ASF dual-hosted git repository.
ash 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 57aeb34ecc Allow python 3.12 for the breeze release commands (#42936)
57aeb34ecc is described below
commit 57aeb34eccf8b0ca1cbb50a711ab548b7dc09494
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Fri Oct 11 11:11:27 2024 +0100
Allow python 3.12 for the breeze release commands (#42936)
I'm not 100% sure why we added this check in the first place, but it doesn't
seem to be needed anymore (I've tested things locally with this removed and
it
all seems to behave itself)
---
dev/breeze/src/airflow_breeze/utils/python_versions.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/dev/breeze/src/airflow_breeze/utils/python_versions.py
b/dev/breeze/src/airflow_breeze/utils/python_versions.py
index 3571bebb24..c7d514f5ff 100644
--- a/dev/breeze/src/airflow_breeze/utils/python_versions.py
+++ b/dev/breeze/src/airflow_breeze/utils/python_versions.py
@@ -50,9 +50,6 @@ def check_python_version():
if not sys.version_info >= (3, 9):
get_console().print("[error]At least Python 3.9 is required to prepare
reproducible archives.\n")
error = True
- elif not sys.version_info < (3, 12):
- get_console().print("[error]Python 3.12 is not supported.\n")
- error = True
if error:
get_console().print(
"[warning]Please reinstall Breeze using Python 3.9 - 3.11
environment.[/]\n\n"