File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Python >= 3.6
3030You can install directly using pip:
3131
3232``` sh
33- pip install git+https://github.com/ apache/ airflow-client-python.git
33+ pip install apache- airflow-client
3434````
3535
3636# ## Setuptools
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ svn mkdir ${VERSION}
202202cd ${VERSION}
203203
204204# Move the artifacts to svn folder & commit
205- for f in ../../../airflow-dev/clients/python/$RC /* ; do svn cp $f ${$(basename $f )/ rc?/ } ; done
205+ for f in ../../../../ airflow-dev/clients/python/$RC /* ; do svn cp $f ${$(basename $f )/ rc?/ } ; done
206206svn commit -m " Release Apache Airflow Python Client ${VERSION} from ${RC} "
207207
208208# Remove old release
@@ -219,9 +219,10 @@ Verify that the packages appear in [airflow](https://dist.apache.org/repos/dist/
219219
220220At this point we release an official package:
221221
222- - Build the package:
222+ - Clean & Build the package:
223223
224224 ``` shell script
225+ git clean -fxd
225226 python setup.py sdist bdist_wheel
226227 ```
227228
@@ -261,6 +262,7 @@ At this point we release an official package:
261262- Push Tag for the final version
262263
263264 ` ` ` shell script
265+ git tag ${VERSION}
264266 git push origin ${VERSION}
265267 ` ` `
266268
You can’t perform that action at this time.
0 commit comments