Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to implicit (native) namespace for sphinxcontrib. #2

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

- Drop support for Python 2.7, 3.5, 3.6.
- Add support for Python 3.9, 3.10, 3.11, 3.12.
- Switch to implicit (native) namespace for ``sphinxcontrib``.
icemac marked this conversation as resolved.
Show resolved Hide resolved


1.6.0 (2020-04-17)
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

from io import open
from setuptools import setup, find_packages
from setuptools import setup


here = os.path.dirname(__file__)
Expand All @@ -19,7 +19,7 @@
keywords='sphinx openapi swagger rest api renderer docs redoc',
author='Ihor Kalnytskyi',
author_email='[email protected]',
packages=find_packages(exclude=['docs', 'tests*']),
packages=['sphinxcontrib.redoc'],
include_package_data=True,
zip_safe=False,
use_scm_version=True,
Expand Down Expand Up @@ -47,5 +47,4 @@
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
namespace_packages=['sphinxcontrib'],
)
12 changes: 0 additions & 12 deletions sphinxcontrib/__init__.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading