silx-kit / jupyterlab-h5web

A JupyterLab extension to explore and visualize HDF5 file contents. Based on https://github.com/silx-kit/h5web.
MIT License
65 stars 8 forks source link

Update h5web from 1.2.0 to 1.3.0 #73

Closed loichuder closed 2 years ago

github-actions[bot] commented 2 years ago

The backport to 0.x failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-0.x 0.x
# Navigate to the new working tree
cd .worktrees/backport-0.x
# Create a new branch
git switch --create backport-73-to-0.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick ac0e947e7c08e3fc20584806e37d8948a6c2b2fb
# Push it to GitHub
git push --set-upstream origin backport-73-to-0.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-0.x

Then, create a pull request where the base branch is 0.x and the compare/head branch is backport-73-to-0.x.