From 1bf543b2e1ee309d7634ca0bdcfa3582dfdb0386 Mon Sep 17 00:00:00 2001 From: Emerson Farrugia Date: Sat, 29 Jul 2023 22:59:11 +0200 Subject: [PATCH] Use versions of dependencies known to work --- test-data-validator/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-data-validator/README.md b/test-data-validator/README.md index 7f6c52de..4b56738f 100644 --- a/test-data-validator/README.md +++ b/test-data-validator/README.md @@ -9,8 +9,7 @@ You'll need [Python 3.7](https://www.python.org/downloads/) or later. You'll also need the [requests](https://pypi.org/project/requests/) and [jsonschema](https://pypi.org/project/jsonschema/) Python packages. Note that `jsonschema` depends on [format checkers](https://python-jsonschema.readthedocs.io/en/stable/validate/#validating-formats). You can install the format checkers with `jsonschema` by using the following commands: ```sh -pip install requests -pip install "jsonschema[format]" +pip install -r requirements.txt ``` > If you have both Python 2 and Python 3, your Python 3 command may be called `python3` and your Python 3 package installer command may be called `pip3`. Please use the appropriate Python 3 commands for your system.