python-sphinx-theme-alabaster/0003-Don-t-import-deprecated-module.patch
zhang-liang-pengkun 59bc710be0 Don't import deprecated module
Signed-off-by: zhang-liang-pengkun <zhangliangpengkun@xfusion.com>
2023-12-28 16:13:30 +08:00

29 lines
714 B
Diff

From 96bb1c2ae28333046e2a81f9dfcc1e21aa7624d2 Mon Sep 17 00:00:00 2001
From: Jeff Forcier <jeff@bitprophet.org>
Date: Thu, 8 Sep 2022 17:41:11 -0400
Subject: [PATCH] Don't import deprecated module
---
tasks.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tasks.py b/tasks.py
index b15ee74..b3358e5 100644
--- a/tasks.py
+++ b/tasks.py
@@ -1,9 +1,9 @@
from invoke import Collection
-from invocations import docs, travis, checks
+from invocations import docs, checks
from invocations.packaging import release
-ns = Collection(release, docs, travis, checks.blacken)
+ns = Collection(release, docs, checks.blacken)
ns.configure(
{
"packaging": {
--
2.39.0.windows.2