Skip to content

Commit 1234bab

Browse files
committed
Stop declaring version dynamically in pyproject.toml
1 parent 821036a commit 1234bab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ requires = [
1616
#
1717
[project]
1818
name = "jupyter_server_proxy"
19+
version = "4.1.1-0.dev"
1920
description = "A Jupyter server extension to run additional processes and proxy to them that comes bundled JupyterLab extension to launch pre-defined processes."
2021
keywords = ["jupyter", "jupyterlab", "jupyterlab-extension"]
2122
authors = [
2223
{ name = "Ryan Lovett", email = "[email protected]" },
2324
{ name = "Yuvi Panda", email = "[email protected]" },
2425
{ name = "Jupyter Development Team", email = "[email protected]" },
2526
]
26-
dynamic = ["version"]
2727
readme = "README.md"
2828
license = { file = "LICENSE" }
2929
requires-python = ">=3.8"
@@ -83,9 +83,6 @@ Tracker = "https://github.com/jupyterhub/jupyter-server-proxy/issues"
8383

8484
# hatch ref: https://hatch.pypa.io/latest/
8585
#
86-
[tool.hatch.version]
87-
path = "jupyter_server_proxy/_version.py"
88-
8986
[tool.hatch.build.targets.sdist]
9087
artifacts = [
9188
"jupyter_server_proxy/labextension",
@@ -190,6 +187,9 @@ regex = '''
190187
message_template = "Bump to {new_version}"
191188
tag_template = "v{new_version}"
192189

190+
[[tool.tbump.file]]
191+
src = "pyproject.toml"
192+
193193
[[tool.tbump.file]]
194194
src = "labextension/package.json"
195195

0 commit comments

Comments
 (0)