From 1d0e7648596af45e03eae717572325fb6529dfc7 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 15 Jan 2021 19:22:38 -0500 Subject: [PATCH] Switch to PEP 420 namespace package --- CHANGES.rst | 5 +++++ jaraco/__init__.py | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 jaraco/__init__.py diff --git a/CHANGES.rst b/CHANGES.rst index 115a43f..46023ad 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +v3.2.0 +====== + +Switched to PEP 420 for ``jaraco`` namespace. + v3.1.0 ====== diff --git a/jaraco/__init__.py b/jaraco/__init__.py deleted file mode 100644 index 0d1f7ed..0000000 --- a/jaraco/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore