From 52017587945633d1ad609d9359aa3374afa57c98 Mon Sep 17 00:00:00 2001 From: edX requirements bot Date: Sat, 28 Oct 2023 20:21:05 -0400 Subject: [PATCH 1/2] chore: Updating Python Requirements --- requirements/base.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index 0e932ad0e..66089c5e3 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -8,7 +8,7 @@ accessible-pygments==0.0.4 # via pydata-sphinx-theme alabaster==0.7.13 # via sphinx -babel==2.13.0 +babel==2.13.1 # via # pydata-sphinx-theme # sphinx @@ -16,7 +16,7 @@ beautifulsoup4==4.12.2 # via pydata-sphinx-theme certifi==2023.7.22 # via requests -charset-normalizer==3.3.0 +charset-normalizer==3.3.1 # via requests colorama==0.4.6 # via sphinx-autobuild @@ -40,7 +40,7 @@ packaging==23.2 # via # pydata-sphinx-theme # sphinx -pydata-sphinx-theme==0.14.1 +pydata-sphinx-theme==0.14.2 # via sphinx-book-theme pygments==2.16.1 # via From 356635cee0c6f616808394662b0fdd40c6a8f517 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 30 Oct 2023 09:47:03 -0400 Subject: [PATCH 2/2] feat: Disable navigating with keys. Although I think this is super convenient, it turns out that it is not generally accessible. See https://github.com/pydata/pydata-sphinx-theme/issues/1492 `False` will be the default in the future but we explicitly set it now to quiet a warning about the change. --- source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/source/conf.py b/source/conf.py index 0e43b0466..38950638e 100644 --- a/source/conf.py +++ b/source/conf.py @@ -145,6 +145,7 @@ "use_repository_button": True, "use_issues_button": True, "use_edit_page_button": True, + "navigation_with_keys": False, # "announcement": "", }