From 17808492e54e7dfa88f2058d5155e6f8dc785099 Mon Sep 17 00:00:00 2001 From: Duc Trung Le Date: Wed, 24 May 2023 12:13:42 +0200 Subject: [PATCH] Remove server extension --- .github/workflows/build.yml | 7 ------- package.json | 4 ++-- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 363f0e6..dd6b011 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,6 @@ jobs: set -eux python -m pip install .[test] - jupyter server extension list - jupyter server extension list 2>&1 | grep -ie "marpyter.*OK" - jupyter labextension list jupyter labextension list 2>&1 | grep -ie "marpyter.*OK" python -m jupyterlab.browser_check @@ -77,10 +74,6 @@ jobs: pip install "jupyterlab>=4.0.0b0,<5" marpyter*.whl - - jupyter server extension list - jupyter server extension list 2>&1 | grep -ie "marpyter.*OK" - jupyter labextension list jupyter labextension list 2>&1 | grep -ie "marpyter.*OK" python -m jupyterlab.browser_check --no-browser-test diff --git a/package.json b/package.json index 68a8417..ecd07cf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "marpyter", - "version": "0.1.0", - "description": "A JupyterLab extension.", + "version": "0.1.0-rc.0", + "description": "A JupyterLab extension for Marp.", "keywords": [ "jupyter", "jupyterlab", diff --git a/pyproject.toml b/pyproject.toml index 47bb879..554f636 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0b0,<5", "hatch-nodejs-version"] +requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version"] build-backend = "hatchling.build" [project] @@ -69,7 +69,7 @@ version_cmd = "hatch version" [tool.jupyter-releaser.hooks] before-build-npm = [ - "python -m pip install 'jupyterlab>=4.0.0b0,<5'", + "python -m pip install 'jupyterlab>=4.0.0,<5'", "jlpm", "jlpm build:prod" ]