summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-01-28 08:02:13 +0100
committerGitHub <noreply@github.com>2025-01-28 08:02:13 +0100
commitd9af197801376fae178761cac12d57178a738cf4 (patch)
tree90f7ced27f7d847da4e29337e131696492047a4d /docs/topics/testing
parent8eca4077f60fa0705ecfd9437c9ceaeef7a3808b (diff)
Refs #36005 -- Bumped minimum supported versions of 3rd-party packages.
This bumps minimum supported versions of 3rd-party packages to the first releases to support Python 3.12.
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/tools.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index a03ad7da78..ce8e3fd821 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -1022,7 +1022,7 @@ First of all, you need to install the :pypi:`selenium` package:
.. console::
- $ python -m pip install "selenium >= 4.8.0"
+ $ python -m pip install "selenium >= 4.23.0"
Then, add a ``LiveServerTestCase``-based test to your app's tests module
(for example: ``myapp/tests.py``). For this example, we'll assume you're using