Skip to content

Commit

Permalink
Fix boilerplate paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus authored and manzt committed Apr 23, 2024
1 parent 221e23c commit 5288b2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ artifacts = ["src/eigen_tour/static/*"]

[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = ["src/ipyfoo/static/widget.js"]
skip-if-exists = ["src/ipyfoo/static/widget.js"]
ensured-targets = ["src/eigen_tour/static/widget.js"]
skip-if-exists = ["src/eigen_tour/static/widget.js"]
dependencies = ["hatch-jupyter-builder>=0.5.0"]

[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
Expand Down
2 changes: 1 addition & 1 deletion src/eigen_tour/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import traitlets

try:
__version__ = importlib.metadata.version("ipyfoo")
__version__ = importlib.metadata.version("eigen_tour")
except importlib.metadata.PackageNotFoundError:
__version__ = "unknown"

Expand Down

0 comments on commit 5288b2c

Please sign in to comment.