You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -530,12 +530,17 @@ uv run pytest -n 2 test/functional/ios/search_context/find_by_ios_class_chain_te
530
530
Follow the below steps.
531
531
532
532
```bash
533
-
uv pip install setuptools
533
+
# Used to publish the package to pypi
534
534
uv pip install twine
535
-
# Type the new version number and 'yes' if you can publish it
536
-
# You can test the command with DRY_RUN
537
-
DRY_RUN=1 ./release.sh
535
+
536
+
rm -rf dist
537
+
# bumping the version, building a package and creating a tag.
538
+
uv run semantic-release version --patch|--minor|--major
539
+
540
+
# this 'release' script now has pushing built modules to pypi only.
538
541
./release.sh # release
542
+
543
+
# input the same version
539
544
```
540
545
541
546
If the `pypi` was not able to publish with user name and password, please try out `-u` and `-p` option by yourself with `twine` such as `twine upload -u <name> -p <pass> dist/Appium-Python-Client-4.1.0.tar.gz`.
0 commit comments