From 5dc8430a0bfdd23b32e7e61342da17d5d3188375 Mon Sep 17 00:00:00 2001 From: rmorshea Date: Thu, 29 Jul 2021 14:11:00 -0700 Subject: [PATCH 1/2] fix search in docs by upgrading sphinx --- docs/source/_static/css/fix-code-colors.css | 25 --------------------- docs/source/developer-guide.rst | 2 +- requirements/build-docs.txt | 4 ++-- 3 files changed, 3 insertions(+), 28 deletions(-) delete mode 100644 docs/source/_static/css/fix-code-colors.css diff --git a/docs/source/_static/css/fix-code-colors.css b/docs/source/_static/css/fix-code-colors.css deleted file mode 100644 index b353eac43..000000000 --- a/docs/source/_static/css/fix-code-colors.css +++ /dev/null @@ -1,25 +0,0 @@ -code.literal { - background: var(--color-inline-code-background) !important; -} - -:root { - --color-inline-code-background: #f0f0f0; -} - -@media (prefers-color-scheme: dark) { - :root { - --color-code-background: #202020; - --color-inline-code-background: hsl(0, 0%, 18%); - } - - td.linenos pre { - background: #202020 !important; - color: #d0d0d0 !important; - } -} - -@media (prefers-color-scheme: light) { - :root { - --color-inline-code-background: #f0f0f0; - } -} diff --git a/docs/source/developer-guide.rst b/docs/source/developer-guide.rst index a3d6f692a..cc29dc301 100644 --- a/docs/source/developer-guide.rst +++ b/docs/source/developer-guide.rst @@ -92,7 +92,7 @@ In order to develop IDOM locally you'll first need to install the following: * - NodeJS >= 14 - https://nodejs.org/en/download/package-manager/ - * - NPM >= 7.7 + * - NPM >= 7.13 - https://docs.npmjs.com/try-the-latest-stable-version-of-npm .. note:: diff --git a/requirements/build-docs.txt b/requirements/build-docs.txt index 1c9bd2756..6e67679cc 100644 --- a/requirements/build-docs.txt +++ b/requirements/build-docs.txt @@ -1,6 +1,6 @@ -sphinx ==3.5.4 +sphinx ==4.1.2 sphinx-autodoc-typehints ==1.7.0 -furo ==2020.10.13b12 +furo ==2021.07.28.b40 sphinx-panels ==0.6.0 setuptools_scm sphinx-copybutton ==0.3.0 From a7674950f5aa7c9b57830134043a0b654042e350 Mon Sep 17 00:00:00 2001 From: rmorshea Date: Thu, 12 Aug 2021 12:15:13 -0700 Subject: [PATCH 2/2] increase timeout --- src/idom/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/idom/testing.py b/src/idom/testing.py index 85bccb181..8c45867ab 100644 --- a/src/idom/testing.py +++ b/src/idom/testing.py @@ -44,7 +44,7 @@ def create_simple_selenium_web_driver( driver_type: Type[WebDriver] = Chrome, driver_options: Optional[Any] = None, - implicit_wait_timeout: float = 5.0, + implicit_wait_timeout: float = 10.0, page_load_timeout: float = 5.0, window_size: Tuple[int, int] = (1080, 800), ) -> WebDriver: