From 43154588578bf977efca3f8a2c2e1d54a897d43d Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 5 Mar 2021 18:29:49 +0000 Subject: [PATCH] MNT: Remove fsl/__init__.py - previously we used pkgutil-style namespace packages to preserve compatibility with python 2. But py2-compat is no longer a goal, so we can now use native namespace packages. --- fsl/__init__.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 fsl/__init__.py diff --git a/fsl/__init__.py b/fsl/__init__.py deleted file mode 100644 index 1a3917dc7..000000000 --- a/fsl/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python -# -# __init__.py - The fslpy library. -# -# Author: Paul McCarthy <pauldmccarthy@gmail.com> -# -"""The :mod:`fsl` package is a library which contains convenience classes -and functions for use by FSL python tools. It is broadly split into the -following sub-packages: - -.. autosummary:: - - fsl.data - fsl.utils - fsl.scripts - fsl.transform - fsl.version - fsl.wrappers - -.. note:: The ``fsl`` namespace is a ``pkgutil``-style *namespace package* - - it can be used across different projects - see - https://packaging.python.org/guides/packaging-namespace-packages/ - for details. -""" - -__path__ = __import__('pkgutil').extend_path(__path__, __name__) # noqa -- GitLab