From a22cb75b7e2cf35526cc698b480c67cc8bedd34d Mon Sep 17 00:00:00 2001 From: Dove Date: Sun, 24 Sep 2023 23:13:31 +0900 Subject: [PATCH 1/3] chore: bump up dependencies --- pyproject.toml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 547233f..e3e8758 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pwdriver" -version = "0.27.3" +version = "0.27.4" description = "It will download a WebDriver, and then set basic configuration automatically." license = "MIT" authors = [ @@ -25,7 +25,6 @@ keywords = [ classifiers = [ "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -38,9 +37,9 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.7" -selenium = "^4.10.0" -Appium-Python-Client = "^2.11.1" +python = "^3.8" +selenium = "^4.12.0" +Appium-Python-Client = "^3.0.0" requests = "^2.31.0" [tool.poetry.urls] From dd9d4d725f6cf8cebdec120d65c581a76b25f03f Mon Sep 17 00:00:00 2001 From: Dove Date: Sun, 24 Sep 2023 23:22:16 +0900 Subject: [PATCH 2/3] chore: bump up actions version --- .github/workflows/python_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_test.yml b/.github/workflows/python_test.yml index b50fe08..c3949be 100644 --- a/.github/workflows/python_test.yml +++ b/.github/workflows/python_test.yml @@ -25,7 +25,7 @@ jobs: python -m pip install --upgrade pip pip install pwdriver codecov - name: Install chrome - uses: nanasess/setup-chromedriver@v1.0.7 + uses: nanasess/setup-chromedriver@v2 if: matrix.browser == 'chrome' - name: Setup chromedriver run: chromedriver --url-base=/wd/hub & From 10b33bad1e49259a671e331162d62d1ec71fe673 Mon Sep 17 00:00:00 2001 From: Dove Date: Sun, 24 Sep 2023 23:22:29 +0900 Subject: [PATCH 3/3] chore: bump up python version --- .github/workflows/python_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_release.yml b/.github/workflows/python_release.yml index e46b95b..b4bd6fe 100644 --- a/.github/workflows/python_release.yml +++ b/.github/workflows/python_release.yml @@ -9,10 +9,10 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11" - name: Install poetry run: | curl -sSL https://install.python-poetry.org | python3 -