8000 gh-121277: Allow `.. versionadded:: next` in docs by encukou · Pull Request #121278 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-121277: Allow .. versionadded:: next in docs #121278

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

Merged
merged 18 commits into from
Sep 25, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Split long line
  • Loading branch information
encukou committed Jul 19, 2024
commit 91bd51186f588f948d9d803ab55c923e900a1044
3 changes: 2 additions & 1 deletion Doc/tools/extensions/pyspecific.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,8 @@ def expand_version_arg(argument, release):
class PyVersionChange(sphinx.domains.changeset.VersionChange):
def run(self):
# Replace the 'next' special token with the current development version
self.arguments[0] = expand_version_arg(self.arguments[0], self.config.release)
self.arguments[0] = expand_version_arg(self.arguments[0],
self.config.release)
return super().run()


Expand Down
0