Skip to content

Commit

Permalink
Bump to latest template version (#258)
Browse files Browse the repository at this point in the history
* Bump to latest template version

* Add empty yarn.lock to ui-tests folders

* Fix embedme

* Fix link
  • Loading branch information
fcollonval authored Nov 12, 2023
1 parent 36a6595 commit cf1efca
Show file tree
Hide file tree
Showing 234 changed files with 5,155 additions and 4,670 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ node_modules/
*.egg-info/
.ipynb_checkpoints
*.tsbuildinfo
*.lock
__pycache__
.yarn/

Expand All @@ -18,3 +17,5 @@ labextension
_version.py

.jupyter_ystore.db
yarn.lock
!**/ui-tests/yarn.lock
2 changes: 1 addition & 1 deletion codemirror-extension/.copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v4.0.5
_commit: v4.2.4
_src_path: gh:jupyterlab/extension-template
author_email: ''
author_name: Project Jupyter Contributors
Expand Down
2 changes: 0 additions & 2 deletions codemirror-extension/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
enableImmutableInstalls: false

nodeLinker: node-modules
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
from ._version import __version__
try:
from ._version import __version__
except ImportError:
# Fallback when using the package in dev mode without installing
# in editable mode with pip. It is highly recommended to install
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
import warnings
warnings.warn("Importing 'jupyterlab_examples_codemirror_extension' outside a proper installation.")
__version__ = "dev"


def _jupyter_labextension_paths():
Expand Down
Loading

0 comments on commit cf1efca

Please sign in to comment.