From 59fb4e5a9467d2baeddd5978601f57b3de8a1fa4 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 1 Nov 2023 16:06:36 +0100 Subject: [PATCH] Stop declaring version dynamically in pyproject.toml --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 163e1a44..60430221 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ requires = [ # [project] name = "jupyter_server_proxy" +version = "4.1.1-0.dev" description = "A Jupyter server extension to run additional processes and proxy to them that comes bundled JupyterLab extension to launch pre-defined processes." keywords = ["jupyter", "jupyterlab", "jupyterlab-extension"] authors = [ @@ -23,7 +24,6 @@ authors = [ { name = "Yuvi Panda", email = "yuvipanda@gmail.com" }, { name = "Jupyter Development Team", email = "jupyter@googlegroups.com" }, ] -dynamic = ["version"] readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.8" @@ -83,9 +83,6 @@ Tracker = "https://github.com/jupyterhub/jupyter-server-proxy/issues" # hatch ref: https://hatch.pypa.io/latest/ # -[tool.hatch.version] -path = "jupyter_server_proxy/_version.py" - [tool.hatch.build.targets.sdist] artifacts = [ "jupyter_server_proxy/labextension", @@ -191,6 +188,7 @@ message_template = "Bump to {new_version}" tag_template = "v{new_version}" [[tool.tbump.file]] +src = "pyproject.toml" src = "labextension/package.json" [tool.pytest.ini_options]