From 0ec8955e0717c8f3c5681d7463c1dc113915844c Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Sat, 29 Oct 2022 15:59:48 +0100 Subject: [PATCH] Remove contradictory docs (#118) --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index d2e1d27..3ac9231 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,10 @@ venv = ".venv" [Pyright](https://github.com/microsoft/pyright) is written in TypeScript, requiring node to be installed, and is normally installed with npm. This could be an entry barrier for some Python developers as they may not have node or npm installed on their machine; I wanted to make pyright as easy to install as any normal Python package. - ## How Pyright for Python Works This project works by first checking if node is in the `PATH`. If it is not, then we download node at runtime using [nodeenv](https://github.com/ekalinin/nodeenv) and then install the pyright npm package using `npx`. -We also automatically upgrade the pyright npm package to its latest version on every run, see below for how to change this behaviour. - ## Automatically keeping pyright up to date By default Pyright for Python is set to target a specific pyright version and new releases will be automatically created whenever a new pyright version is released. It is highly recommended to use an automatic dependency update tool such as [dependabot](https://docs.github.com/en/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-dependabot-security-updates).