File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ The official home of this guide is https://devguide.python.org.
2424Compilation
2525-----------
2626
27- For the compilation of the devguide, you need to use a version of Python which
28- supports the ``venv `` module, because the ``make html `` command will create a
29- virtual environment and will install the ``Sphinx `` package::
27+ For the compilation of the devguide, Python 3.11+ is needed::
3028
3129 make html
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def __init__(self) -> None:
4444
4545 def write_csv (self ) -> None :
4646 """Output CSV files."""
47- now_str = str (dt .datetime .utcnow ( ))
47+ now_str = str (dt .datetime .now ( dt . UTC ))
4848
4949 versions_by_category = {"branches" : {}, "end-of-life" : {}}
5050 headers = None
You can’t perform that action at this time.
0 commit comments