Skip to content

Commit

Permalink
Drop Python 3.9 support as it was already broken
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Dec 3, 2024
1 parent d8a9178 commit c00ed15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repos:
rev: v3.19.0
hooks:
- id: pyupgrade
args: [--py39-plus]
args: [--py310-plus]
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v1.11.2
# hooks:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -45,7 +44,7 @@
keywords=["ONVIF", "Camera", "IPC"],
url="http://github.com/hunterjm/python-onvif-zeep-async",
zip_safe=False,
python_requires=">=3.9",
python_requires=">=3.10",
packages=find_packages(exclude=["docs", "examples", "tests"]),
install_requires=requires,
package_data={
Expand Down

0 comments on commit c00ed15

Please sign in to comment.