diff --git a/CHANGES b/CHANGES index 9cf8ca4..80b0156 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,11 @@ This file describes user-visible changes between the extension versions. +Version 0.3.2 (2022-01-05) +========================== +* Resolves issue #5 by removing sphinxcontrib/__init__.py which could be installed + by different sphinxcontrb packages like sphinxcontrib-asyncio. + Version 0.3.1 (2022-01-05) ========================== * Resolves issue #3 (bug when missing members were requested). diff --git a/pyproject.toml b/pyproject.toml index 8f74094..2eb32a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sphinxcontrib-zopeext" -version = "0.3.1" +version = "0.3.2" description = "Provides sphinxcontrib.zopeext.autointerface for documenting Zope interfaces." readme = "README.rst" license = "BSD-2-Clause" diff --git a/sphinxcontrib/__init__.py b/sphinxcontrib/__init__.py deleted file mode 100644 index b5a7dc2..0000000 --- a/sphinxcontrib/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -# -*- coding: utf-8 -*- -""" - sphinxcontrib - ~~~~~~~~~~~~~ - - This package is a namespace package that contains all extensions - distributed in the ``sphinx-contrib`` distribution. - - :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -__import__('pkg_resources').declare_namespace(__name__) - diff --git a/sphinxcontrib/zopeext/__init__.py b/sphinxcontrib/zopeext/__init__.py index 3a5d2f4..6ad122e 100644 --- a/sphinxcontrib/zopeext/__init__.py +++ b/sphinxcontrib/zopeext/__init__.py @@ -1,3 +1,3 @@ __all__ = ["autointerface"] -__version__ = "0.3.1" +__version__ = "0.3.2"