No longer a namespace package

This commit is contained in:
Mike Naberezny 2023-06-24 08:24:04 -07:00
parent f856bcb699
commit 7b9a7dea70
2 changed files with 3 additions and 6 deletions

View File

@ -18,6 +18,8 @@
- The ``MPU`` class constructor now accepts ``None`` for the initial PC, which
will cause it to read the address from the reset vector on ``reset()``.
- The ``py65`` package is no longer a namespace package.
1.1.0 (2018-07-01)
------------------

View File

@ -1,6 +1 @@
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
# this is a package