Skip to content

Commit

Permalink
Stop declaring version dynamically in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Nov 1, 2023
1 parent 5902e79 commit 59fb4e5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ 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 = [
{ name = "Ryan Lovett", email = "[email protected]" },
{ name = "Yuvi Panda", email = "[email protected]" },
{ name = "Jupyter Development Team", email = "[email protected]" },
]
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 59fb4e5

Please sign in to comment.