Skip to content

Commit a632c69

Browse files
chore(deps): update appium-python-client requirement from <5,>=2.0.0 to >=2.0.0,<6 in /finder/python (#782)
* chore(deps): update appium-python-client requirement in /finder/python Updates the requirements on [appium-python-client](https://github.com/appium/python-client) to permit the latest version. - [Release notes](https://github.com/appium/python-client/releases) - [Changelog](https://github.com/appium/python-client/blob/master/CHANGELOG.rst) - [Commits](appium/python-client@v2.0.0...v5.0.0) --- updated-dependencies: - dependency-name: appium-python-client dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * lint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kazuaki Matsuo <[email protected]>
1 parent 0b98b69 commit a632c69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/finder-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
python-version: ['3.8', '3.9', '3.10', '3.11']
21+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2222

2323
steps:
2424
- uses: actions/checkout@v3

finder/python/appium_flutter_finder/flutter_finder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _serialize(self, finder_dict):
6868
return base64.b64encode(
6969
bytes(json.dumps(finder_dict, separators=(',', ':')), 'UTF-8')).decode('UTF-8')
7070

71-
def _by_ancestor_or_descendant(self, type_, serialized_finder, matching, match_root=False, first_match_only=False):
71+
def _by_ancestor_or_descendant(self, type_, serialized_finder, matching, match_root=False, first_match_only=False): # pylint: disable=too-many-positional-arguments
7272
param = {'finderType': type_, 'matchRoot': str(match_root).lower(), 'firstMatchOnly': str(first_match_only).lower()}
7373

7474
try:

finder/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
3838
'Topic :: Software Development :: Quality Assurance',
3939
'Topic :: Software Development :: Testing'
4040
],
41-
install_requires=['Appium-Python-Client >= 2.0.0, < 5']
41+
install_requires=['Appium-Python-Client >= 2.0.0, < 6']
4242
)

0 commit comments

Comments
 (0)