From 034d5f832f7d64fc8f8d42f72b631e4a329189c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= Date: Thu, 6 Jul 2023 06:58:35 +0000 Subject: [PATCH] Remove no longer needed declare_namespace()` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fix removes declare_namespace() which is no longer needed. it used old style namespaces which has been using `pkg_resources` module which is part of the `setuptools` and which is as well depreceted now. Signed-off-by: Tomasz Kłoczko --- sphinx_tabs/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sphinx_tabs/__init__.py b/sphinx_tabs/__init__.py index 491e10d..a5cfdf5 100644 --- a/sphinx_tabs/__init__.py +++ b/sphinx_tabs/__init__.py @@ -1,3 +1 @@ __version__ = "3.4.1" - -__import__("pkg_resources").declare_namespace(__name__)