jupyterlab-contrib / jupyterlab-vim

Vim notebook cell bindings for JupyterLab
https://jupyterlab-contrib.github.io/jupyterlab-vim.html
MIT License
660 stars 43 forks source link

`master` branch was renamed to `main` #106

Closed krassowski closed 10 months ago

krassowski commented 10 months ago

I've just noticed that tests do not run after merging a PR. This is because main slipped in when updating to JupyterLab 4.0. As new repositories and most extensions now use main branch, would it make sense to migrate over here too to limit confusion?

https://github.com/jupyterlab-contrib/jupyterlab-vim/blob/2078dc0ad8be24225da67cac8bf954a8e31e66fc/.github/workflows/build.yml#L3-L7

CC @ianhi

ianhi commented 10 months ago

makes sense to me

ianhi commented 10 months ago

done

krassowski commented 10 months ago

For reference, instructions to update locally:

git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
krassowski commented 10 months ago

Thank you!