Skip to content

Commit ca3e048

Browse files
authored
Refs #36005 -- Bumped minimum supported versions of docutils to 0.22.
1 parent d506e4a commit ca3e048

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

docs/internals/contributing/writing-code/unit-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ dependencies:
317317
* :pypi:`asgiref` 3.9.1+ (required)
318318
* :pypi:`bcrypt` 4.1.1+
319319
* :pypi:`colorama` 0.4.6+
320-
* :pypi:`docutils` 0.19+
320+
* :pypi:`docutils` 0.22+
321321
* :pypi:`geoip2` 4.8.0+
322322
* :pypi:`Jinja2` 2.11+
323323
* :pypi:`numpy` 1.26.0+

docs/ref/contrib/admin/admindocs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ the following:
2323
your ``urlpatterns``. Make sure it's included *before* the
2424
``'admin/'`` entry, so that requests to ``/admin/doc/`` don't get
2525
handled by the latter entry.
26-
* Install the :pypi:`docutils` 0.19+ package.
26+
* Install the :pypi:`docutils` 0.22+ package.
2727
* **Optional:** Using the admindocs bookmarklets requires
2828
``django.contrib.admindocs.middleware.XViewMiddleware`` to be installed.
2929

docs/releases/6.0.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ of each library are the first to add or confirm compatibility with Python 3.12:
377377
* ``aiosmtpd`` 1.4.5
378378
* ``argon2-cffi`` 23.1.0
379379
* ``bcrypt`` 4.1.1
380+
* ``docutils`` 0.22
380381
* ``geoip2`` 4.8.0
381382
* ``Pillow`` 10.1.0
382383
* ``mysqlclient`` 2.2.1

tests/admin_docs/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,5 @@ def test_publish_parts(self):
133133
)
134134
source = "reST, `interpreted text`, default role."
135135
markup = "<p>reST, <cite>interpreted text</cite>, default role.</p>\n"
136-
parts = docutils.core.publish_parts(source=source, writer_name="html4css1")
136+
parts = docutils.core.publish_parts(source=source, writer="html4css1")
137137
self.assertEqual(parts["fragment"], markup)

tests/requirements/py3.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ asgiref >= 3.9.1
33
argon2-cffi >= 23.1.0
44
bcrypt >= 4.1.1
55
black >= 25.9.0
6-
docutils >= 0.19
6+
docutils >= 0.22
77
geoip2 >= 4.8.0
88
jinja2 >= 2.11.0
99
numpy >= 1.26.0

0 commit comments

Comments
 (0)