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

apidoc: Move apidoc to ext/apidoc #3929

Merged
merged 1 commit into from
Sep 26, 2017

Conversation

stephenfin
Copy link
Contributor

The 'sphinx-apidoc' tool is no longer the only kid on the block when it
comes to automatic documentation of Python projects, with the likes of
'sphinx-autoapi' in development [1] and is not really maintained. Given
the fact that the tool is tangential to Sphinx's main goal, there isn't
really anything that warrants its continue existence as a core module.

Signify this by moving the feature to 'ext'. This allows the feature to
continue to exist in the package, but indicates that stability might be
worse than one would expect from the core library.

To avoid breaking packages that are using this feature directly, such as
pbr [3], aliases for the old 'main' method are included. This is based
on what Django does and, like Django, will allow us to safely remove the
old modules in Sphinx 2.0.

[1] https://github.com/rtfd/sphinx-autoapi
[2] #3485 (comment)
[3] https://github.com/django/django/blob/1.11/django/test/runner.py#L688-L695

@stephenfin stephenfin force-pushed the move-sphinx-apidoc-to-ext branch from 7ddda19 to dd8508d Compare July 14, 2017 14:36
Copy link
Member

@tk0miya tk0miya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM with nits.

@@ -0,0 +1,439 @@
# -*- coding: utf-8 -*-
"""
sphinx.apidoc
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be sphinx.ext.apidoc.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@@ -0,0 +1,439 @@
# -*- coding: utf-8 -*-
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems this is a new file.
Please rename from sphinx/apidoc.py and create sphinx/apidoc.py as a new file to keep commit history,

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not able to do anything about this. Git does file rename detection automatically (git [mv] might well be an alias for git cp [src] [dst] and git rm [src]), and its heuristics seem to be failing us here.

@tk0miya
Copy link
Member

tk0miya commented Jul 15, 2017

It seems travis raises errors. please check them.

@shimizukawa Do you have any comments?
I wonder which is better sphinx.ext.apidoc or sphinx.ext.autodoc.apidoc. what do you think?

@tk0miya tk0miya requested a review from shimizukawa July 15, 2017 13:13
@tk0miya tk0miya added this to the 1.7 milestone Jul 15, 2017
@shimizukawa
Copy link
Member

I have no objection.
And +1 to sphinx.ext.apidoc. sphinx.ext.autodoc.apidoc is too deep to me.

Copy link
Member

@shimizukawa shimizukawa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no more comment than @tk0miya's point.

@tk0miya
Copy link
Member

tk0miya commented Jul 17, 2017

Thanks, either is okay. I think sphinx.ext.autodoc.apidoc is better if apidoc is a part of autodoc. But I don't know so much about apidoc. so it is not strong opinion.
Let's go with sphinx.ext.apidoc.

@stephenfin stephenfin force-pushed the move-sphinx-apidoc-to-ext branch from dd8508d to 86d24ed Compare July 21, 2017 14:36
@stephenfin
Copy link
Contributor Author

@tk0miya OK, I've pushed the reworked version up and the build looks to be good now (it was a pep8 issue). Think that's all that's needed now?

@stephenfin
Copy link
Contributor Author

stephenfin commented Jul 21, 2017

Thanks, either is okay. I think sphinx.ext.autodoc.apidoc is better if apidoc is a part of autodoc. But I don't know so much about apidoc. so it is not strong opinion.

It is and it isn't 😄 The sphinx-apidoc tool generates documents that contain sphinx.ext.autodoc directives. However, it's not really part of sphinx.ext.autodoc, per se. If we were to move this, we should probably move sphinx.ext.autosummary too, as that also generates stub documents with sphinx.ext.autodoc directives in them, but I wouldn't suggest doing that.

In the long term, I'd really like to see all three packages moved out of the Sphinx core and into their own package(s) in the sphinx-doc namespace, for all the reasons given in the commit message. I think a separate package would be a better way of indicating that this is very much an add-on to Sphinx, rather than a key, core piece of functionality. However, I'm not in the position to make this call myself nor would I be confident enough with the source (yet!) to maintain this new package myself. I'll wait til I've more work done with the Sphinx codebase before committing myself here, heh.

@stephenfin stephenfin force-pushed the move-sphinx-apidoc-to-ext branch 2 times, most recently from 2766394 to aa45fad Compare September 20, 2017 10:39
@stephenfin
Copy link
Contributor Author

Could I get some eyes on this again? I think I've resolved everything that needs resolving?

The 'sphinx-apidoc' tool is no longer the only kid on the block when it
comes to automatic documentation of Python projects, with the likes of
'sphinx-autoapi' in development [1], and is not really maintained. Given
the fact that the tool is tangential to Sphinx's main goal, there isn't
really anything that warrants its continue existence as a core module.

Signify this by moving the feature to 'ext'. This allows the feature to
continue to exist in the package, but indicates that stability might be
worse than one would expect from the core library.

To avoid breaking packages that are using this feature directly, such as
pbr [3], aliases for the old 'main' method are included. This is based
on what Django does and, like Django, will allow us to safely remove the
old modules in Sphinx 2.0.

[1] https://github.com/rtfd/sphinx-autoapi
[2] sphinx-doc#3485 (comment)
[3] https://github.com/django/django/blob/1.11/django/test/runner.py#L688-L695

Signed-off-by: Stephen Finucane <stephen@that.guru>
Copy link
Member

@tk0miya tk0miya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for late response. I'm in busy last 2-3 months. But I'm back now :-)

@tk0miya tk0miya merged commit 1ef0351 into sphinx-doc:master Sep 26, 2017
@tk0miya
Copy link
Member

tk0miya commented Sep 26, 2017

Merged. Thank you for your good work!

tk0miya added a commit that referenced this pull request Sep 26, 2017
@stephenfin stephenfin deleted the move-sphinx-apidoc-to-ext branch October 5, 2017 09:03
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 10, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants