diff --git a/.markdown-link-check.json b/.markdown-link-check.json new file mode 100644 index 0000000000..60967aea01 --- /dev/null +++ b/.markdown-link-check.json @@ -0,0 +1,7 @@ +{ + "ignorePatterns": [ + { + "pattern": "^https://crates.io" + } + ] +} diff --git a/README.md b/README.md index f4d647761e..4bf30e980a 100644 --- a/README.md +++ b/README.md @@ -545,7 +545,7 @@ This can also be useful in environments where rtx isn't activated that has lot more flexibility. It supports functionality that is not possible with `.tool-versions`, such as: - setting arbitrary env vars while inside the directory -- passing options to plugins like `virtualenv='.venv'` for [rtx-python](https://github.com/jdx/rtx-python#virtualenv-support). +- passing options to plugins like `virtualenv='.venv'` for [python](https://github.com/jdx/rtx/blob/main/docs/python.md#experimental-automatic-virtualenv-creationactivation). - specifying custom plugin URLs Here is what an `.rtx.toml` looks like: @@ -570,7 +570,7 @@ python = {version='3.10', virtualenv='.venv'} [plugins] # specify a custom repo url # note this will only be used if the plugin does not already exist -python = 'https://github.com/jdx/rtx-python' +python = 'https://github.com/asdf-community/asdf-python' [settings] # project-local settings verbose = true diff --git a/docs/python.md b/docs/python.md index d992232e37..9924834078 100644 --- a/docs/python.md +++ b/docs/python.md @@ -31,7 +31,7 @@ rtx uses [python-build](https://github.com/pyenv/pyenv/tree/master/plugins/pytho ## Configuration `python-build` already has a [handful of settings](https://github.com/pyenv/pyenv/tree/master/plugins/python-build), in -additional to that `rtx-python` has a few extra configuration variables: +additional to that python in rtx has a few extra configuration variables: - `RTX_PYENV_REPO` [string]: the default is `https://github.com/pyenv/pyenv.git` - `RTX_PYTHON_PATCH_URL` [string]: A url to a patch file to pass to python-build. @@ -40,7 +40,7 @@ additional to that `rtx-python` has a few extra configuration variables: ## Default Python packages -rtx-python can automatically install a default set of Python packages with pip right after installing a Python version. To enable this feature, provide a `$HOME/.default-python-packages` file that lists one package per line, for example: +rtx can automatically install a default set of Python packages with pip right after installing a Python version. To enable this feature, provide a `$HOME/.default-python-packages` file that lists one package per line, for example: ```text ansible