From d8f3cc255df09eea68421f9c33ff634450622940 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 3 Nov 2022 10:54:11 -0500 Subject: [PATCH 1/3] use global env for min version check --- .github/workflows/python-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 99b2810eea..28fd018ce1 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -115,7 +115,8 @@ jobs: - name: Install miniumum versions uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1 - name: Run the unit tests - run: hatch run test:nowarn || hatch run test:nowarn --lf + run: | + pytest -vv -W default || pytest -vv -W default --lf test_prereleases: name: Test Prereleases From 62485863c885393a5644b6cf2b83330474532813 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 3 Nov 2022 12:22:47 -0500 Subject: [PATCH 2/3] bump client min version --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a55d1a0860..d80d2bd139 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "anyio>=3.1.0,<4", "argon2-cffi", "jinja2", - "jupyter_client>=6.1.12", + "jupyter_client>=7.2", "jupyter_core>=4.7.0", "jupyter_server_terminals", "nbconvert>=6.4.4", @@ -136,12 +136,12 @@ testpaths = [ ] timeout = 100 # Restore this setting to debug failures -# timeout_method = "thread" +timeout_method = "thread" filterwarnings = [ "error", "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning", "ignore:run_pre_save_hook is deprecated:DeprecationWarning", - "always:unclosed Date: Thu, 3 Nov 2022 12:48:33 -0500 Subject: [PATCH 3/3] bump jupyter_core dep --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d80d2bd139..ae1dd96f89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dependencies = [ "argon2-cffi", "jinja2", "jupyter_client>=7.2", - "jupyter_core>=4.7.0", + "jupyter_core>=4.9.2", "jupyter_server_terminals", "nbconvert>=6.4.4", "nbformat>=5.2.0",