From 4f38e8b5349176240ebc154241ec3b7346820318 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sun, 2 Jun 2024 17:48:15 +0100 Subject: [PATCH] List pip as an explicit dependency for the conformance tests I created a virtual environment using `uv`, which meant that `pip` wasn't automatically installed into my environment, causing all tests to be skipped due to things like this: https://github.com/python/typing/blob/a79b87fadb0185d8032211dc81638f4acb5bc122/conformance/src/type_checker.py#L76-L84 --- conformance/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/conformance/requirements.txt b/conformance/requirements.txt index 179cd8de6..396b5100d 100644 --- a/conformance/requirements.txt +++ b/conformance/requirements.txt @@ -3,5 +3,6 @@ tomlkit tqdm pyright mypy +pip pyre-check pytype; platform_system != "Windows"