Skip to content

Commit

Permalink
Use correct versioning (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 authored Mar 15, 2024
1 parent 25a8ba1 commit 172118b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ipympl/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version_info = (0, 9, 3)
version_info = (0, 9, 4, "dev", 1)
__version__ = '.'.join(map(str, version_info))
js_semver = '^0.11'
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ dependencies = [
"traitlets<6",
]
requires-python = ">=3.9"
version = "0.9.4.dev1"
dynamic = [
"version",
]

[project.optional-dependencies]
docs = [
Expand Down Expand Up @@ -106,6 +108,10 @@ npm = ["jlpm"]
[tool.hatch.build.hooks.jupyter-builder.editable-build-kwargs]
npm = ["jlpm"]

[tool.hatch.version]
path = "ipympl/_version.py"
source = "code"

[tool.pytest.ini_options]
testpaths = [
"docs/examples",
Expand Down

0 comments on commit 172118b

Please sign in to comment.