Skip to content

Commit 172118b

Browse files
authored
Use correct versioning (#550)
1 parent 25a8ba1 commit 172118b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ipympl/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version_info = (0, 9, 3)
1+
version_info = (0, 9, 4, "dev", 1)
22
__version__ = '.'.join(map(str, version_info))
33
js_semver = '^0.11'

pyproject.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ dependencies = [
5050
"traitlets<6",
5151
]
5252
requires-python = ">=3.9"
53-
version = "0.9.4.dev1"
53+
dynamic = [
54+
"version",
55+
]
5456

5557
[project.optional-dependencies]
5658
docs = [
@@ -106,6 +108,10 @@ npm = ["jlpm"]
106108
[tool.hatch.build.hooks.jupyter-builder.editable-build-kwargs]
107109
npm = ["jlpm"]
108110

111+
[tool.hatch.version]
112+
path = "ipympl/_version.py"
113+
source = "code"
114+
109115
[tool.pytest.ini_options]
110116
testpaths = [
111117
"docs/examples",

0 commit comments

Comments
 (0)