aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/python-check.yml2
-rw-r--r--requirements.txt2
-rw-r--r--requirements_dev.txt5
-rw-r--r--setup.py5
4 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/python-check.yml b/.github/workflows/python-check.yml
index 00027a2..9d931ec 100644
--- a/.github/workflows/python-check.yml
+++ b/.github/workflows/python-check.yml
@@ -13,7 +13,7 @@ jobs:
13 strategy: 13 strategy:
14 fail-fast: false 14 fail-fast: false
15 matrix: 15 matrix:
16 python-version: ["3.10", "3.11"] 16 python-version: ["3.10", "3.11", "3.12"]
17 17
18 steps: 18 steps:
19 - uses: actions/checkout@v3 19 - uses: actions/checkout@v3
diff --git a/requirements.txt b/requirements.txt
index 60a0f18..b5d953a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1,3 @@
1aiohttp~=3.8 1aiohttp~=3.9
2yarl~=1.9 2yarl~=1.9
3typing-extensions~=4.8 3typing-extensions~=4.8
diff --git a/requirements_dev.txt b/requirements_dev.txt
index baeaf1c..847cb81 100644
--- a/requirements_dev.txt
+++ b/requirements_dev.txt
@@ -1,4 +1,5 @@
1black~=23.9 1black~=23.11
2flake8~=6.1 2flake8~=6.1
3mypy~=1.6 3mypy~=1.7
4pylint~=3.0 4pylint~=3.0
5setuptools~=68.2
diff --git a/setup.py b/setup.py
index ae187f8..bcdb90b 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f:
7 7
8setup( 8setup(
9 name="pyhOn", 9 name="pyhOn",
10 version="0.15.10", 10 version="0.15.11",
11 author="Andre Basche", 11 author="Andre Basche",
12 description="Control hOn devices with python", 12 description="Control hOn devices with python",
13 long_description=long_description, 13 long_description=long_description,
@@ -21,7 +21,7 @@ setup(
21 packages=find_packages(), 21 packages=find_packages(),
22 include_package_data=True, 22 include_package_data=True,
23 python_requires=">=3.10", 23 python_requires=">=3.10",
24 install_requires=["aiohttp~=3.8", "typing-extensions~=4.8", "yarl~=1.9"], 24 install_requires=["aiohttp~=3.9", "typing-extensions~=4.8", "yarl~=1.9"],
25 classifiers=[ 25 classifiers=[
26 "Development Status :: 4 - Beta", 26 "Development Status :: 4 - Beta",
27 "Environment :: Console", 27 "Environment :: Console",
@@ -30,6 +30,7 @@ setup(
30 "Operating System :: OS Independent", 30 "Operating System :: OS Independent",
31 "Programming Language :: Python :: 3.10", 31 "Programming Language :: Python :: 3.10",
32 "Programming Language :: Python :: 3.11", 32 "Programming Language :: Python :: 3.11",
33 "Programming Language :: Python :: 3.12",
33 "Topic :: Software Development :: Libraries :: Python Modules", 34 "Topic :: Software Development :: Libraries :: Python Modules",
34 ], 35 ],
35 entry_points={ 36 entry_points={