blurb add
over the internet.
📜🤖 blurb-it allows you to add a misc/news file to your own CPython pull request.
A Misc/NEWS.d
file is needed
for almost all non-trivial changes to CPython.
To use blurb-it, you must be logged in to GitHub.
Install blurb-it GitHub App to your account, and then grant the write
access to your
fork of the CPython repository.
Since blurb-it will have write access to the granted repo, you should only install it on your own CPython repository.
- Go to https://github.com/settings/installations.
- Click blurb-it's "Configure" button.
- Scroll down and click the "Uninstall" button.
- Python 3.9+
- aiohttp
- aiohttp-jinja2
- gidgethub >= 5.0.0
- pyjwt >= 2.0.0
- cryptography
- Create a Python virtual environment with
$ python3 -m venv venv
- Activate the virtual environment with
$ . venv/bin/activate
- Install dev requirements with
(venv)$ pip install -r dev-requirements.txt
- Run all tests with
(venv)$ pytest tests