Skip to content

Commit

Permalink
Add python3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Nov 19, 2023
1 parent a7598e5 commit e663806
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aiohttp~=3.8
pycryptodome~=3.18
aiohttp~=3.9
pycryptodome~=3.19
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black~=23.9
black~=23.11
flake8~=6.1
mypy~=1.6
mypy~=1.7
pylint~=3.0
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="speedport-api",
version="0.5.6",
version="0.5.7",
author="Andre Basche",
description="Control Telekom Speedport routers with Python",
long_description=long_description,
Expand All @@ -21,7 +21,7 @@
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=["aiohttp~=3.8", "pycryptodome~=3.18"],
install_requires=["aiohttp~=3.9", "pycryptodome~=3.19"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand All @@ -32,6 +32,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
Expand Down

0 comments on commit e663806

Please sign in to comment.