From c1d65aaaf774440d6021901ade7848e8e132bc38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:53:14 +0000 Subject: [PATCH 1/3] chore(deps): bump selenium from 4.27.1 to 4.28.0 Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.27.1 to 4.28.0. - [Release notes](https://github.com/SeleniumHQ/Selenium/releases) - [Commits](https://github.com/SeleniumHQ/Selenium/commits/selenium-4.28.0) --- updated-dependencies: - dependency-name: selenium dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 31f90bb3..6535a758 100644 --- a/Pipfile +++ b/Pipfile @@ -15,5 +15,5 @@ tox = "~=4.23" types-python-dateutil = "~=2.9" [packages] -selenium = "==4.27.1" +selenium = "==4.28.0" typing-extensions = "~=4.12.2" From eafe5a4e4131c218ae9e2375c1f6c6635bd1d03a Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Wed, 22 Jan 2025 00:19:17 -0800 Subject: [PATCH 2/3] drop python3.8 by following selenium --- .github/workflows/unit-test.yml | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index c8123838..5b474ad1 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index 24ad09d5..b61cea72 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ download and unarchive the source tarball (Appium-Python-Client-X.X.tar.gz). |Appium Python Client| Selenium binding| Python version | |----|----|----| +|`4.3.0`+ |`4.28.0`+ | 3.9+ | |`4.3.0`+ |`4.26.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+ | From f9cc33cab93f9417528cc1ff014a1c55ab68b519 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Wed, 22 Jan 2025 00:21:20 -0800 Subject: [PATCH 3/3] update more --- .github/workflows/functional-test.yml | 2 +- .github/workflows/unit-test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index 7bcfe3d3..2f9a5f33 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -64,7 +64,7 @@ jobs: nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors > appium.log & - name: Set up Python 3.12 - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: 3.12 diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5b474ad1..02d9c472 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install tox