This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch v2-6-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-6-test by this push:
new 8b53f06499 Fix print message in release_candidate_command.py (#31910)
8b53f06499 is described below
commit 8b53f06499bde9bbb949fea4dc25704e558b7688
Author: eladkal <[email protected]>
AuthorDate: Thu Jun 15 02:45:25 2023 +0300
Fix print message in release_candidate_command.py (#31910)
(cherry picked from commit 9a2a5b06957c41f05db974243fcf1577fdd2f0f5)
---
dev/breeze/src/airflow_breeze/commands/release_candidate_command.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
index 5c954583d5..f07f606188 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
@@ -202,7 +202,7 @@ def push_packages_to_test_pypi(version):
"environment. The package download link is available at: "
"https://test.pypi.org/project/apache-airflow/#files "
"Install it with the appropriate constraint file, adapt python
version: "
- f"pip install -i https://test.pypi.org/simple/ --extra-index-url
https://pypi.org/simple/ apache-airflow=={version} --constraint
https://raw.githubusercontent.com/apache/airflow/constraints-{version}/constraints-3.8.txt"
# noqa: 501
+ f"pip install -i https://test.pypi.org/simple/ --extra-index-url
https://pypi.org/simple/apache-airflow=={version} --constraint
https://raw.githubusercontent.com/apache/airflow/constraints-{version}/constraints-3.8.txt"
# noqa: 501
)