From 3ba560dd80886b60c214537d2aec4ed49856f122 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdx@users.noreply.github.com> Date: Wed, 6 Dec 2023 18:24:28 -0600 Subject: [PATCH] lint --- .markdown-link-check.json | 7 +++++++ README.md | 4 ++-- docs/python.md | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .markdown-link-check.json diff --git a/.markdown-link-check.json b/.markdown-link-check.json new file mode 100644 index 000000000..60967aea0 --- /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 f4d647761..4bf30e980 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 d992232e3..992483407 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