Pytest-check-links

Latest version: v4.3.3

Safety actively analyzes 629128 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 4

0.3.0

- Honor Retry-After Header [9](https://github.com/jupyterlab/pytest-check-links/pull/9)
- Update metadata for JupyterLab Org [7](https://github.com/jupyterlab/pytest-check-links/pull/7)

0.2.0

- Add rst handling [4](https://github.com/jupyterlab/pytest-check-links/pull/4)


Making a Release

Using `jupyter_releaser`

The recommended way to make a release is to use [`jupyter_releaser`](https://jupyter-releaser.readthedocs.io/en/latest/get_started/making_release_from_repo.html).

Note that we must use manual versions since Jupyter Releaser does not
yet support "next" or "patch" when dev versions are used.

Manual Release

To create a manual release, perform the following steps:

Set up

bash
pip install hatch twine
git pull origin $(git branch --show-current)
git clean -dffx


Update the version and apply the tag

bash
echo "Enter new version"
read new_version
hatch version ${new_version}
git tag -a ${new_version} -m "Release ${new_version}"


Build the artifacts

bash
rm -rf dist
hatch build


Publish the artifacts to pypi

bash
twine check dist/*
twine upload dist/*

Page 4 of 4

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.