Skip to content

Commit 8caedf8

Browse files
authored
Update repo for Python 3.9+ (#66)
1 parent 487f74f commit 8caedf8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ repos:
3232
args: [--fix, --exit-non-zero-on-fix]
3333
- id: ruff-format
3434
- repo: https://github.com/asottile/pyupgrade
35-
rev: v2.7.2
35+
rev: v3.19.0
3636
hooks:
3737
- id: pyupgrade
38-
args: [--py36-plus]
38+
args: [--py39-plus]
3939
# - repo: https://github.com/pre-commit/mirrors-mypy
4040
# rev: v1.11.2
4141
# hooks:

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
"Topic :: Utilities",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.5",
28+
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
30+
"Programming Language :: Python :: 3.11",
31+
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
2933
]
3034

3135
setup(

0 commit comments

Comments
 (0)