Skip to content

Update HOW_TO_RELEASE.md to reflect inability to push to main #10497

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

Merged
merged 1 commit into from
Jul 3, 2025
Merged
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
10 changes: 6 additions & 4 deletions HOW_TO_RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ upstream https://github.com/pydata/xarray (push)

6. After merging, again ensure your main branch is synced to upstream:
```sh
git switch main
git pull upstream main
```
7. If you have any doubts, run the full test suite one final time!
Expand Down Expand Up @@ -98,14 +99,15 @@ upstream https://github.com/pydata/xarray (push)

```

12. Commit your changes and push to main again:
12. Make a PR with these changes and merge it:

```sh
git commit -am 'New whatsnew section'
git push upstream main
git checkout -b empty-whatsnew-YYYY.MM.X+1
git commit -am "empty whatsnew"
git push
```

You're done pushing to main!
(Note that repo branch restrictions prevent pushing to `main`, so you have to just-self-merge this.)

13. Update the version available on pyodide:

Expand Down
Loading