From 4d3b1fdb877ca6814054578b1a437e252877aadb Mon Sep 17 00:00:00 2001 From: Simon Li Date: Mon, 10 Apr 2023 18:23:12 +0100 Subject: [PATCH] Test https://github.com/jupyterhub/simpervisor/pull/26 --- .github/workflows/test.yaml | 10 ++++++++++ pyproject.toml | 6 +++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6bac9121..1c313d65 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,6 +40,16 @@ jobs: jupyterlab-version: ["2", "3"] python-version: ["3.7", "3.11"] jupyter-app: [notebook, lab] + os: [ubuntu-22.04] + include: + - jupyterlab-version: "3" + python-version: "3.11" + jupyter-app: notebook + os: windows-2022 + - jupyterlab-version: "3" + python-version: "3.11" + jupyter-app: lab + os: windows-2022 steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index b7e688da..227a5fbc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ classifiers = [ dependencies = [ "aiohttp", "jupyter-server >=1.0", - "simpervisor >=0.4", + "simpervisor @ git+https://github.com/rashedmyt/simpervisor@windows", ] [project.optional-dependencies] @@ -78,6 +78,10 @@ exclude = [ "jupyter_server_proxy/labextension" = "share/jupyter/labextensions/@jupyterhub/jupyter-server-proxy" "jupyter_server_proxy/static" = "share/jupyter/nbextensions/jupyter_server_proxy" +[tool.hatch.metadata] +# Allow testing git+https://github.com/... dependencies +allow-direct-references = true + [tool.hatch.metadata.hooks.nodejs] path = "labextension/package.json" fields = ["description", "authors", "urls"]