From 760c3ed1b5fb75a563767c80a8c3541b8b68c4a2 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Thu, 31 Oct 2024 08:54:05 -0700 Subject: [PATCH] chore: allow selenium binging up to 4.25 --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a3898e3..4aa10444 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ download and unarchive the source tarball (Appium-Python-Client-X.X.tar.gz). |Appium Python Client| Selenium binding| Python version | |----|----|----| -|`3.0.0` - `4.2.0` |`4.12.0` - `4.25.0` | 3.8+ | +|`3.0.0` - `4.2.1` |`4.12.0` - `4.25.0` | 3.8+ | |`2.10.0` - `2.11.1` |`4.1.0` - `4.11.2` | 3.7+ | |`2.2.0` - `2.9.0` |`4.1.0` - `4.9.0` | 3.7+ | |`2.0.0` - `2.1.4` |`4.0.0` | 3.7+ | diff --git a/setup.py b/setup.py index 628d0804..254d4e02 100644 --- a/setup.py +++ b/setup.py @@ -49,5 +49,5 @@ 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', ], - install_requires=['selenium ~= 4.12'], + install_requires=['selenium ~= 4.12, < 4.26'], )