You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ms...@apache.org on 2021/04/23 10:43:30 UTC

[airflow-client-python] branch master updated: Update the Readme (#13)

This is an automated email from the ASF dual-hosted git repository.

msumit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-client-python.git


The following commit(s) were added to refs/heads/master by this push:
     new b2c0e2e  Update the Readme (#13)
b2c0e2e is described below

commit b2c0e2e765c530c3b9fdf0f0dd86033b630b89c3
Author: Sumit Maheshwari <ms...@users.noreply.github.com>
AuthorDate: Fri Apr 23 16:13:19 2021 +0530

    Update the Readme (#13)
---
 README.md                    | 2 +-
 dev/README_RELEASE_CLIENT.md | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index f154b98..61ede45 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ Python >= 3.6
 You can install directly using pip:
 
 ```sh
-pip install git+https://github.com/apache/airflow-client-python.git
+pip install apache-airflow-client
 ````
 
 ### Setuptools
diff --git a/dev/README_RELEASE_CLIENT.md b/dev/README_RELEASE_CLIENT.md
index 3750b8e..bef8108 100644
--- a/dev/README_RELEASE_CLIENT.md
+++ b/dev/README_RELEASE_CLIENT.md
@@ -202,7 +202,7 @@ svn mkdir ${VERSION}
 cd ${VERSION}
 
 # Move the artifacts to svn folder & commit
-for f in ../../../airflow-dev/clients/python/$RC/*; do svn cp $f ${$(basename $f)/rc?/}; done
+for f in ../../../../airflow-dev/clients/python/$RC/*; do svn cp $f ${$(basename $f)/rc?/}; done
 svn commit -m "Release Apache Airflow Python Client ${VERSION} from ${RC}"
 
 # Remove old release
@@ -219,9 +219,10 @@ Verify that the packages appear in [airflow](https://dist.apache.org/repos/dist/
 
 At this point we release an official package:
 
-- Build the package:
+- Clean & Build the package:
 
     ```shell script
+    git clean -fxd
     python setup.py sdist bdist_wheel
     ```
 
@@ -261,6 +262,7 @@ At this point we release an official package:
 - Push Tag for the final version
 
     ```shell script
+    git tag ${VERSION}
     git push origin ${VERSION}
     ```