Skip to content

Commit c00ed15

Browse files
committed
Drop Python 3.9 support as it was already broken
1 parent d8a9178 commit c00ed15

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repos:
3535
rev: v3.19.0
3636
hooks:
3737
- id: pyupgrade
38-
args: [--py39-plus]
38+
args: [--py310-plus]
3939
# - repo: https://github.com/pre-commit/mirrors-mypy
4040
# rev: v1.11.2
4141
# hooks:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"Topic :: Utilities",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",
3029
"Programming Language :: Python :: 3.11",
3130
"Programming Language :: Python :: 3.12",
@@ -45,7 +44,7 @@
4544
keywords=["ONVIF", "Camera", "IPC"],
4645
url="http://github.com/hunterjm/python-onvif-zeep-async",
4746
zip_safe=False,
48-
python_requires=">=3.9",
47+
python_requires=">=3.10",
4948
packages=find_packages(exclude=["docs", "examples", "tests"]),
5049
install_requires=requires,
5150
package_data={

0 commit comments

Comments
 (0)