Skip to content

Commit 40625b9

Browse files
committed
Conform to frozen env name spec
1 parent 1ec155c commit 40625b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ help:
1111

1212

1313
conda-install: ## Use conda to install dev dependencies using unpinned env specification
14-
conda env create -f environment.yml --force --name jupyterlab-code-formatter
14+
conda env create -f environment.yml --force --name jupyterlab_code_formatter
1515

1616
conda-freeze: ## Use conda to freeze the current env available
1717
conda env export | grep -v prefix: > environment-frozen.yml
1818

1919
conda-install-frozen: ## Use conda to install dev dependencies using pinned env specification - subject to repodata.json changes
20-
conda env create -f environment-frozen.yml --force --name jupyterlab-code-formatter
20+
conda env create -f environment-frozen.yml --force --name jupyterlab_code_formatter
2121

2222
dev-install:
2323
pip install -e .

start_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
conda activate jupyterlab-code-formatter
1+
conda activate jupyterlab_code_formatter
22
export SERVEREXTENSION_PATH=$PWD
33
export PATH=$SERVEREXTENSION_PATH/.venv/bin:$PATH
44
export LABEXTENSION_PATH=$PWD/src

0 commit comments

Comments
 (0)