Skip to content

Commit d47d36e

Browse files
authored
update stf-appium-client (#22)
1 parent e5cd707 commit d47d36e

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: ['3.8', '3.9', '3.10']
20+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2121
steps:
2222
- uses: actions/checkout@v3
2323
- name: Set up Python

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
"""
4-
:copyright: (c) 2021 by Jussi Vatjus-Anttila
4+
:copyright: (c) 2024 by Jussi Vatjus-Anttila
55
:license: MIT, see LICENSE for more details.
66
"""
77
from setuptools import setup
@@ -22,8 +22,8 @@
2222
install_requires=[
2323
"pytest>=5.0",
2424
"pytest-metadata",
25-
"stf-appium-client~=0.11.1",
26-
"pytest-lockable>=0.10.0,<0.11.0"],
25+
"stf-appium-client~=0.12.0",
26+
"pytest-lockable~=0.10.0"],
2727
# List additional groups of dependencies here (e.g. development
2828
# dependencies). Users will be able to install these using the "extras"
2929
# syntax, for example:
@@ -54,6 +54,8 @@
5454
"Programming Language :: Python :: 3.8",
5555
"Programming Language :: Python :: 3.9",
5656
"Programming Language :: Python :: 3.10",
57+
"Programming Language :: Python :: 3.11",
58+
"Programming Language :: Python :: 3.12",
5759
"Programming Language :: Python :: 3 :: Only",
5860
],
5961
)

0 commit comments

Comments
 (0)