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 965d752443 Small fixes to verification procedure for python client
(#40977)
965d752443 is described below
commit 965d752443c6b389a40a40f1fb651be3517e5800
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Jul 24 00:56:20 2024 +0200
Small fixes to verification procedure for python client (#40977)
---
dev/README_RELEASE_PYTHON_CLIENT.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev/README_RELEASE_PYTHON_CLIENT.md
b/dev/README_RELEASE_PYTHON_CLIENT.md
index 1a2d29e764..40199cc8c9 100644
--- a/dev/README_RELEASE_PYTHON_CLIENT.md
+++ b/dev/README_RELEASE_PYTHON_CLIENT.md
@@ -312,11 +312,11 @@ Airflow Python client supports reproducible builds, which
means that the package
sources should produce binary identical packages in reproducible way. You
should check if the packages can be
binary-reproduced when built from the sources.
-Checkout airflow sources and build packages in dist folder (replace X.Y.Z with
the version
+Checkout airflow sources and build packages in dist folder (replace X.Y.Zrc1
with the version + rc candidate)
you are checking):
```shell script
-VERSION=X.Y.Z
+VERSION=X.Y.Zrc1
git checkout python-client-${VERSION}
export AIRFLOW_REPO_ROOT=$(pwd)
rm -rf dist/*
@@ -344,7 +344,7 @@ cd ..
svn update --set-depth=infinity asf-dist/dev/airflow/clients/python
# Then compare the packages
-cd asf-dist/dev/airflow/clients/python/X.Y.Zrc1
+cd asf-dist/dev/airflow/clients/python/${VERSION}
for i in ${AIRFLOW_REPO_ROOT}/dist/*
do
echo "Checking if $(basename $i) is the same as $i"