1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

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.
This commit is contained in:
Mariusz Felisiak
2025-01-28 08:02:13 +01:00
committed by GitHub
parent 8eca4077f6
commit d9af197801
11 changed files with 62 additions and 47 deletions

View File

@@ -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