Skip to content
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

Prep for jupyter releaser #1877

Merged
merged 8 commits into from Oct 6, 2022
Merged

Prep for jupyter releaser #1877

merged 8 commits into from Oct 6, 2022

Conversation

blink1073
Copy link
Member

@blink1073 blink1073 commented Oct 4, 2022

For now we will use the release from releaser-fork approach, until the bugs are worked out of the release-from-repo approach.

Used the following command and script for the changelog:

pandoc -f rst -t markdown -o CHANGELOG.md changelog.rst

import re
with open('CHANGELOG.md') as fid:
    data = fid.read()


patt = r'`(\d+)`({.interpreted-text\s+role="ghpull"}:?)'
matches = re.findall(patt, data)


for num, second in matches:
    data = data.replace(f"`{num}`{second}", f"[#{num}](https://github.com/jupyter/nbconvert/pull/{num})" )


with open("CHANGELOG.md", "w") as fid:
    fid.write(data)

@blink1073 blink1073 changed the title Use jupyter releaser Prep for jupyter releaser Oct 6, 2022
@blink1073 blink1073 merged commit e4e85b6 into jupyter:main Oct 6, 2022
@blink1073 blink1073 deleted the use-releaser branch October 6, 2022 19:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant