Skip to content

Commit b2c0e2e

Browse files
authored
Update the Readme (#13)
1 parent 8d56d7b commit b2c0e2e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Python >= 3.6
3030
You 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

dev/README_RELEASE_CLIENT.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ svn mkdir ${VERSION}
202202
cd ${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
206206
svn 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

220220
At 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

0 commit comments

Comments
 (0)