Skip to content

Commit 5dca144

Browse files
authored
drop unsupported python3.9 (#1248)
1 parent 34111e0 commit 5dca144

3 files changed

Lines changed: 85 additions & 561 deletions

File tree

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v7
1818
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ maintainers = [
1717
keywords = ["appium", "selenium", "python client", "mobile automation"]
1818
classifiers = [
1919
"Development Status :: 5 - Production/Stable",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
@@ -26,7 +25,7 @@ classifiers = [
2625
"Environment :: Console",
2726
"Topic :: Software Development :: Testing",
2827
]
29-
requires-python = ">=3.9"
28+
requires-python = ">=3.10"
3029
dependencies = [
3130
"selenium>=4.26,<5.0",
3231
"typing-extensions~=4.13",

0 commit comments

Comments
 (0)