This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 25d36db8ace Update Airflow version references to `3.X` in
`README_RELEASE_PROVIDER.md` (#58392)
25d36db8ace is described below
commit 25d36db8aceaf9b964881f4a85ffad2ba0d4cbd8
Author: Jake Roach <[email protected]>
AuthorDate: Mon Nov 17 10:50:59 2025 -0500
Update Airflow version references to `3.X` in `README_RELEASE_PROVIDER.md`
(#58392)
---
dev/README_RELEASE_PROVIDERS.md | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index 3970f4dac8c..f04e8e80573 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -988,7 +988,7 @@ downloaded from the SVN).
### Installing in your local virtualenv
-You have to make sure you have Airflow 2* installed in your PIP virtualenv
+You have to make sure you have Airflow 3* installed in your PIP virtualenv
(the version you want to install providers with).
```shell
@@ -998,7 +998,7 @@ pip install
apache-airflow-providers-<provider>==<VERSION>rc<X>
### Installing with Breeze
```shell
-breeze start-airflow --use-airflow-version 2.10.3 --python 3.10 --backend
postgres \
+breeze start-airflow --use-airflow-version 3.1.3 --python 3.10 --backend
postgres \
--load-example-dags --load-default-connections
```
@@ -1015,12 +1015,13 @@ Provider distributions is used.
If you prefer to build your own image, you can also use the official image and
PyPI packages to test
Provider distributions. This is especially helpful when you want to test
integrations, but you need to install
-additional tools. Below is an example Dockerfile, which installs providers for
Google/
+additional tools. Below is an example Dockerfile, which installs providers for
Google. Please note, these
+version numbers are arbitrary. You'll need to substitute the proper version
numbers when running this
+yourself.
```dockerfile
-FROM apache/airflow:2.2.3
-
-RUN pip install --user apache-airflow-providers-google==2.2.2.rc1
+FROM apache/airflow:3.1.3
+RUN pip install --user apache-airflow-providers-google==18.1.0.rc1
USER ${AIRFLOW_UID}
```