Skip to content

Commit 581d1ee

Browse files
authored
Rename to jupyterlab-launchpad (#59)
* Rename to `jupyterlab-launchpad` * Migrate from the database before rename * Remane in hidden files * Rename folder * Rename few more occurrences in the workflows * Bump version to 1.0.0
1 parent 41a3e0c commit 581d1ee

28 files changed

+99
-93
lines changed

.copier-answers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ file_extension: ''
88
has_binder: true
99
has_settings: true
1010
kind: frontend
11-
labextension_name: jupyterlab-new-launcher
11+
labextension_name: jupyterlab-launchpad
1212
mimetype: ''
1313
mimetype_name: ''
1414
project_short_description: A redesigned JupyterLab launcher
15-
python_name: jupyterlab_new_launcher
16-
repository: https://github.com/nebari-dev/jupyterlab-new-launcher
15+
python_name: jupyterlab_launchpad
16+
repository: https://github.com/nebari-dev/jupyterlab-launchpad
1717
test: true
1818
viewer_name: ''
1919

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
python -m pip install .[test]
4242
4343
jupyter labextension list
44-
jupyter labextension list 2>&1 | grep -ie "jupyterlab-new-launcher.*OK"
44+
jupyter labextension list 2>&1 | grep -ie "jupyterlab-launchpad.*OK"
4545
python -m jupyterlab.browser_check
4646
4747
- name: Package the extension
@@ -50,13 +50,13 @@ jobs:
5050
5151
pip install build
5252
python -m build
53-
pip uninstall -y "jupyterlab_new_launcher" jupyterlab
53+
pip uninstall -y "jupyterlab_launchpad" jupyterlab
5454
5555
- name: Upload extension packages
5656
uses: actions/upload-artifact@v4
5757
with:
5858
name: extension-artifacts
59-
path: dist/jupyterlab_new_launcher*
59+
path: dist/jupyterlab_launchpad*
6060
if-no-files-found: error
6161

6262
test_isolated:
@@ -79,11 +79,11 @@ jobs:
7979
sudo rm -rf $(which node)
8080
sudo rm -rf $(which node)
8181
82-
pip install "jupyterlab>=4.0.0,<5" jupyterlab_new_launcher*.whl
82+
pip install "jupyterlab>=4.0.0,<5" jupyterlab_launchpad*.whl
8383
8484
8585
jupyter labextension list
86-
jupyter labextension list 2>&1 | grep -ie "jupyterlab-new-launcher.*OK"
86+
jupyter labextension list 2>&1 | grep -ie "jupyterlab-launchpad.*OK"
8787
python -m jupyterlab.browser_check --no-browser-test
8888
8989
integration-tests:
@@ -109,7 +109,7 @@ jobs:
109109
- name: Install the extension
110110
run: |
111111
set -eux
112-
python -m pip install "jupyterlab>=4.0.0,<5" jupyterlab_new_launcher*.whl
112+
python -m pip install "jupyterlab>=4.0.0,<5" jupyterlab_launchpad*.whl
113113
114114
- name: Install dependencies
115115
working-directory: ui-tests
@@ -138,7 +138,7 @@ jobs:
138138
if: always()
139139
uses: actions/upload-artifact@v4
140140
with:
141-
name: jupyterlab_new_launcher-playwright-tests
141+
name: jupyterlab_launchpad-playwright-tests
142142
path: |
143143
ui-tests/test-results
144144
ui-tests/playwright-report

.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
- name: Upload Distributions
2727
uses: actions/upload-artifact@v4
2828
with:
29-
name: jupyterlab_new_launcher-releaser-dist-${{ github.run_number }}
29+
name: jupyterlab_launchpad-releaser-dist-${{ github.run_number }}
3030
path: .jupyter_releaser_checkout/dist

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ node_modules/
77
*.egg-info/
88
.ipynb_checkpoints
99
*.tsbuildinfo
10-
jupyterlab_new_launcher/labextension
10+
jupyterlab_launchpad/labextension
1111
# Version file is handled by hatchling
12-
jupyterlab_new_launcher/_version.py
12+
jupyterlab_launchpad/_version.py
1313
.jupyter
1414

1515
# Integration tests

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# jupyterlab-new-launcher
1+
# jupyterlab-launchpad
22

3-
[![Github Actions Status](https://github.com/nebari-dev/jupyterlab-new-launcher/workflows/Build/badge.svg)](https://github.com/nebari-dev/jupyterlab-new-launcher/actions/workflows/build.yml)
4-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/nebari-dev/jupyterlab-new-launcher/main?urlpath=lab)
3+
[![Github Actions Status](https://github.com/nebari-dev/jupyterlab-launchpad/workflows/Build/badge.svg)](https://github.com/nebari-dev/jupyterlab-launchpad/actions/workflows/build.yml)
4+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/nebari-dev/jupyterlab-launchpad/main?urlpath=lab)
55

66
A redesigned JupyterLab launcher
77

@@ -11,8 +11,8 @@ Kernel selection dialog:
1111

1212
![new dialog][dialog]
1313

14-
[launcher]: https://raw.githubusercontent.com/nebari-dev/jupyterlab-new-launcher/main/docs/images/launcher.png
15-
[dialog]: https://raw.githubusercontent.com/nebari-dev/jupyterlab-new-launcher/main/docs/images/dialog.png
14+
[launcher]: https://raw.githubusercontent.com/nebari-dev/jupyterlab-launchpad/main/docs/images/launcher.png
15+
[dialog]: https://raw.githubusercontent.com/nebari-dev/jupyterlab-launchpad/main/docs/images/dialog.png
1616

1717
## Requirements
1818

@@ -23,15 +23,15 @@ Kernel selection dialog:
2323
To install the extension, execute:
2424

2525
```bash
26-
pip install jupyterlab-new-launcher
26+
pip install jupyterlab-launchpad
2727
```
2828

2929
## Uninstall
3030

3131
To remove the extension, execute:
3232

3333
```bash
34-
pip uninstall jupyterlab-new-launcher
34+
pip uninstall jupyterlab-launchpad
3535
```
3636

3737
## Contributing
@@ -46,7 +46,7 @@ The `jlpm` command is JupyterLab's pinned version of
4646

4747
```bash
4848
# Clone the repo to your local environment
49-
# Change directory to the jupyterlab_new_launcher directory
49+
# Change directory to the jupyterlab_launchpad directory
5050
# Install package in development mode
5151
pip install -e "."
5252
# Link your development version of the extension with JupyterLab
@@ -75,12 +75,12 @@ jupyter lab build --minimize=False
7575
### Development uninstall
7676

7777
```bash
78-
pip uninstall jupyterlab_new_launcher
78+
pip uninstall jupyterlab_launchpad
7979
```
8080

8181
In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
8282
command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
83-
folder is located. Then you can remove the symlink named `jupyterlab-new-launcher` within that folder.
83+
folder is located. Then you can remove the symlink named `jupyterlab-launchpad` within that folder.
8484

8585
### Testing the extension
8686

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Making a new release of jupyterlab_new_launcher
1+
# Making a new release of jupyterlab_launchpad
22

33
The extension can be published to `PyPI` and `npm` manually or using the [Jupyter Releaser](https://github.com/jupyter-server/jupyter_releaser).
44

binder/environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# a mybinder.org-ready environment for demoing jupyterlab_new_launcher
1+
# a mybinder.org-ready environment for demoing jupyterlab_launchpad
22
# this environment may also be used locally on Linux/MacOS/Windows, e.g.
33
#
44
# conda env update --file binder/environment.yml
5-
# conda activate jupyterlab-new-launcher-demo
5+
# conda activate jupyterlab-launchpad-demo
66
#
7-
name: jupyterlab-new-launcher-demo
7+
name: jupyterlab-launchpad-demo
88

99
channels:
1010
- conda-forge

binder/postBuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
""" perform a development install of jupyterlab_new_launcher
2+
""" perform a development install of jupyterlab_launchpad
33
44
On Binder, this will run _after_ the environment has been fully created from
55
the environment.yml in this directory.
@@ -43,5 +43,5 @@ _("jupyter", "server", "extension", "list")
4343
_("jupyter", "labextension", "list")
4444

4545

46-
print("JupyterLab with jupyterlab_new_launcher is ready to run with:\n")
46+
print("JupyterLab with jupyterlab_launchpad is ready to run with:\n")
4747
print("\tjupyter lab\n")

install.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"packageManager": "python",
3-
"packageName": "jupyterlab_new_launcher",
4-
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package jupyterlab_new_launcher"
3+
"packageName": "jupyterlab_launchpad",
4+
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package jupyterlab_launchpad"
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ServerApp": {
33
"jpserver_extensions": {
4-
"jupyterlab_new_launcher": true
4+
"jupyterlab_launchpad": true
55
}
66
}
77
}

0 commit comments

Comments
 (0)