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 aa90902 commit 4ea9ce2
Show file tree
Hide file tree
Showing 3 changed files with 16 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
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
getuseragent~=0.0.7
oic~=1.6.0
requests~=2.31.0
selenium-wire~=5.1.0
webdriver-manager~=3.8.6
getuseragent~=0.0
oic~=1.6
requests~=2.31
selenium-wire~=5.1
webdriver-manager~=3.8
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,23 @@
"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",
],
platforms="any",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=["requests"],
extras_require={"auth": ["selenium-wire", "webdriver-manager", "getuseragent", "oic"]},
extras_require={
"auth": [
"getuseragent~=0.0",
"oic~=1.6",
"requests~=2.31",
"selenium-wire~=5.1",
"webdriver-manager~=3.8",
]
},
entry_points={
"console_scripts": [
"lidl-plus = lidlplus.__main__:start",
Expand Down

0 comments on commit 4ea9ce2

Please sign in to comment.