-
Notifications
You must be signed in to change notification settings - Fork 321
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
remove deprecated configs and associated code/tests #1698
Conversation
@@ -188,9 +188,7 @@ | |||
"json_url": json_url, | |||
"version_match": version_match, | |||
}, | |||
"navigation_with_keys": False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
False is now the default in theme.conf
so we don't need to specify it in our own docs (or in any tests) just to avoid the deprecation warning
# "back_to_top_button": False, | ||
# "search_bar_position": "navbar", # TODO: Deprecated - remove in future version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAICT this config was being silently ignored, and associated code was already removed
@@ -25,41 +25,6 @@ def update_config(app): | |||
theme_options = utils.get_theme_options_dict(app) | |||
warning = partial(utils.maybe_warn, app) | |||
|
|||
# TODO: deprecation; remove after 0.14 release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you confirm this was already removed long ago ? I didn't find it in theme.conf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- marked as "deprecate after 0.11" (2022 Jun): https://github.com/pydata/pydata-sphinx-theme/pull/698/files#diff-f0f04e8b873a8565b32c276f0dfcfbdb49b0f8b1c022d8cb59cd179872f542dfR42-R43
- Removed from
theme.conf
(2023 Feb): 9a10f9d#diff-f0f04e8b873a8565b32c276f0dfcfbdb49b0f8b1c022d8cb59cd179872f542dfL52-L53
No description provided.