Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
History
=======
Unreleased
----------------
- Declare Python 3.14 support: added the ``3.14`` trove classifier, marked the
README accordingly and set ``requires-python = ">=3.9"`` so the supported
range is stated consistently in one machine-readable place (#476)

3.2.1
----------------
- Fixed botched v3.2 release leaving out the fix for Robot Framework 7.4
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AppiumLibrary_ is an appium testing library for `Robot Framework`_. Library can
It uses `Appium <http://appium.io/>`_ to communicate with Android and iOS application
similar to how *Selenium WebDriver* talks to web browser.

It is supporting Python 3.9+ and Appium Python Client 5.1.1+
It is supporting Python 3.9+ (tested up to Python 3.14) and Appium Python Client 5.1.1+

.. image:: https://img.shields.io/pypi/v/robotframework-appiumlibrary.svg
:target: https://pypi.python.org/pypi/robotframework-appiumlibrary/
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies = [
]
description = "Robot Framework Mobile app testing library for Appium Client Android & iOS & Web"
readme = "README.rst"
requires-python = ">=3.9"
authors = [
{name = "MarketSquare - Robot Framework community"},
{name = "William Zhang"},
Expand All @@ -42,6 +43,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
]
Expand Down
Loading