Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.12
python-version: 3.14

- name: Cache uv modules
uses: actions/cache@v4
Expand Down Expand Up @@ -184,10 +184,10 @@ jobs:
disable-animations: false
script: echo "Generated AVD snapshot for caching."

- name: Set up Python 3.12
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.12
python-version: 3.14

- name: Cache uv modules
uses: actions/cache@v4
Expand Down Expand Up @@ -266,10 +266,10 @@ jobs:
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm

- name: Set up Python 3.12
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.12
python-version: 3.14

- name: Install Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion appium/webdriver/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def switch_to(self) -> MobileSwitchTo:
return MobileSwitchTo(self)

# MJSONWP for Selenium v4
@property
@property # type: ignore[override]
def orientation(self) -> str:
"""
Gets the current orientation of the device
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ Repository = "https://github.com/appium/python-client"
Issues = "https://github.com/appium/python-client/issues"
Changelog = "https://github.com/appium/python-client/blob/master/CHANGELOG.md"

[tool.uv]
dev-dependencies = [
[dependency-groups]
dev = [
"httpretty~=1.1",
"mock~=5.2",
"mypy~=1.17",
"pre-commit~=4.2",
"pytest~=8.4",
Expand Down
Loading