Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to latest template version #258

Merged
merged 4 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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