From 97ac7543b6fc53902a7791bd9d23266ea15eaefa Mon Sep 17 00:00:00 2001 From: Sam Taylor <101062752+samtaylorr@users.noreply.github.com> Date: Fri, 1 Sep 2023 08:52:25 +0100 Subject: [PATCH] Update CONTRIBUTING.rst Changed line 291 from ``python -m pip install tox=3.8.3`` to ``python -m pip install tox==3.8.3`` as shown in the 7th example: https://pip.pypa.io/en/stable/cli/pip_install/#examples, this is the correct way to install specific versions. --- CONTRIBUTING.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 5fde4b961..a4ee45e6a 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -288,7 +288,7 @@ Other ways to run the tests: You can also see the latest test results on `Linux`_ and on `Windows`_. Note, if you are on Windows and are seeing errors running tox, it may be related to `this issue`_, -in which case you may have to install tox v3.8.3 e.g. ``python -m pip install tox=3.8.3`` +in which case you may have to install tox v3.8.3 e.g. ``python -m pip install tox==3.8.3`` .. _this issue: https://github.com/tox-dev/tox/issues/1550