Skip to content

Commit 35565b7

Browse files
committed
Use new invocations for checks.all task
1 parent 3ba2a75 commit 35565b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ setuptools>=56.0.0
1212
coverage==6.2
1313
# Task running
1414
invoke>=2
15-
invocations>=3
15+
invocations>=3.3
1616
# Docs (also transitively via invocations; consider nuking again)
1717
releases>=2
1818

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from invoke import task, Collection
2-
from invocations.checks import blacken
2+
from invocations import checks
33
from invocations.packaging import release
44
from invocations import docs, pytest as pytests
55

@@ -64,5 +64,5 @@ def test(
6464
)
6565

6666

67-
ns = Collection(blacken, coverage, docs, test, release)
67+
ns = Collection(checks, coverage, docs, test, release)
6868
ns.configure({"blacken": {"find_opts": "-and -not -path './build*'"}})

0 commit comments

Comments
 (0)