@@ -63,8 +63,8 @@ Note that some tests require extra setup steps to install the required dependenc
6363 ``` bash
6464 $ python3 -m venv .venv
6565 $ source .venv/bin/activate
66- (.venv)$ pip install -U pip
67- (.venv)$ pip install -r requirements-tests.txt
66+ (.venv)$ pip install -U " pip>=25.1 "
67+ (.venv)$ pip install --group=dev
6868 ```
6969
7070 </td >
@@ -79,8 +79,8 @@ Note that some tests require extra setup steps to install the required dependenc
7979 ``` powershell
8080 > python -m venv .venv
8181 > .venv\Scripts\activate
82- (.venv) > pip install -U pip
83- (.venv) > pip install -r requirements-tests.txt
82+ (.venv) > pip install -U " pip>=25.1"
83+ (.venv) > pip install --group=dev
8484 ```
8585
8686 To be able to run pytype tests, you'll also need to install it manually
@@ -100,8 +100,7 @@ as it's currently excluded from the requirements file:
100100 If you already have [ uv] ( https://docs.astral.sh/uv/getting-started/installation/ ) installed, you can simply replace the commands above with:
101101
102102 ``` shell
103- uv venv
104- uv pip install -r requirements-tests.txt
103+ uv pip install --group=dev
105104 ```
106105
107106 ``` shell
@@ -220,7 +219,7 @@ This has the following keys:
220219 in addition to the requirements in the ` requires ` field.
221220* ` apt_dependencies ` (default: ` [] ` ): A list of Ubuntu APT packages
222221 that need to be installed for stubtest to run successfully.
223- * ` brew_dependencies ` (default: ` [] ` ): A list of MacOS Homebrew packages
222+ * ` brew_dependencies ` (default: ` [] ` ): A list of macOS Homebrew packages
224223 that need to be installed for stubtest to run successfully
225224* ` choco_dependencies ` (default: ` [] ` ): A list of Windows Chocolatey packages
226225 that need to be installed for stubtest to run successfully
@@ -347,7 +346,7 @@ replacing `$INSERT_LIBRARY_NAME_HERE` with the name of the library:
347346When the script has finished running, it will print instructions telling you what to do next.
348347
349348If it has been a while since you set up the virtualenv, make sure you have
350- the latest mypy (` pip install -r requirements-tests.txt ` ) before running the script.
349+ the latest mypy (` pip install --group=dev ` ) before running the script.
351350
352351### Supported type system features
353352
0 commit comments