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.
24
24
Compilation
25
25
-----------
26
26
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::
30
28
31
29
make html
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def __init__(self) -> None:
44
44
45
45
def write_csv (self ) -> None :
46
46
"""Output CSV files."""
47
- now_str = str (dt .datetime .utcnow ( ))
47
+ now_str = str (dt .datetime .now ( dt . UTC ))
48
48
49
49
versions_by_category = {"branches" : {}, "end-of-life" : {}}
50
50
headers = None
You can’t perform that action at this time.
0 commit comments