Skip to content

Commit c1c0417

Browse files
authored
Merge branch 'async' into patch-1
2 parents 8cca053 + d8a9178 commit c1c0417

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33
exclude: "CHANGELOG.md|.copier-answers.yml|.all-contributorsrc"
4-
default_stages: [commit]
4+
default_stages: [pre-commit]
55

66
ci:
77
autofix_commit_msg: "chore(pre-commit.ci): auto fixes"
@@ -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:

requirements_dev.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
-r requirements.txt
33

44
# Dev
5-
pytest
6-
pytest-cov
7-
pytest-asyncio
8-
pylint
5+
pytest==8.3.4
6+
pytest-cov==6.0.0
7+
pytest-asyncio==0.24.0
98

109
# pre-commit
11-
pre-commit==2.7.1
10+
pre-commit==4.0.1

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)