3
3
How to update to a new Python version
4
4
=====================================
5
5
6
- We are currently in branch 3.11 , and we want to update the strings from 3.12 .
6
+ We are currently in branch 3.12 , and we want to update the strings from 3.13 .
7
7
8
- #. Make sure you are in a clean state of the branch 3.11
8
+ #. Make sure you are in a clean state of the branch 3.12
9
9
10
- #. Create a new branch called ``3.12 ``
10
+ #. Create a new branch called ``3.13 ``
11
11
12
12
#. Initialize the submodules::
13
13
14
14
git submodule init
15
15
git submodule update
16
16
17
- #. Fetch the `latest commit of 3.12 branch <https://github.com/python/cpython/commit/0fb18b02c8ad56299d6a2910be0bab8ad601ef24 >`_::
17
+ #. Fetch the `latest release tag of 3.12 <https://github.com/python/cpython/releases/tag/v3.13.0 >`_::
18
18
19
19
cd cpython/
20
- git fetch --depth 1 origin 0fb18b02c8ad56299d6a2910be0bab8ad601ef24
21
-
22
- .. note:: you could also base the hash on the 'git tag' from the desired
23
- version: ``git checkout tags/v3.12.0 -b 3.12`` considering that
24
- ``3.12`` doesn't exist locally.
20
+ git fetch --depth 1 origin tags/v3.13.0
25
21
26
22
#. Checkout that commit locally::
27
23
28
- git checkout 0fb18b02c8ad56299d6a2910be0bab8ad601ef24
24
+ git checkout tags/v3.13.0 -b 3.13.0
29
25
30
26
#. Update the branch on the ``Makefile `` and check the ``requirements.txt `` from
31
27
``./cpython/Doc `` directory, to see if upgrades on the modules like sphinx is
@@ -52,14 +48,17 @@ We are currently in branch 3.11, and we want to update the strings from 3.12.
52
48
53
49
.. note ::
54
50
51
+ You can also run `make build -j ` to use more than 1 core (but keep in mind
52
+ this is not always faster).
53
+
55
54
It may fail the build because there may be files
56
55
that don't exist anymore in the new branch.
57
56
If that's the case, just continue with the steps
58
57
and verify the build later.
59
58
60
59
#. Clean possible garbage (form previous builds)::
61
60
62
- rm -rf _build .. /python-docs-es-pot cpython/Doc/CONTRIBUTING.rst cpython/Doc/upgrade-python-version.rst reviewers-guide.rst
61
+ rm -rf _build cpython /python-docs-es-pot cpython/Doc/CONTRIBUTING.rst cpython/Doc/upgrade-python-version.rst reviewers-guide.rst
63
62
64
63
.. note::
65
64
@@ -69,32 +68,16 @@ We are currently in branch 3.11, and we want to update the strings from 3.12.
69
68
70
69
#. Create the .po files from the new source code. This will generate all the .po files for version 3.11::
71
70
72
- SPHINX_GETTEXT=True sphinx-build -j auto -b gettext -d _build/doctrees . .. /python-docs-es-pot
71
+ SPHINX_GETTEXT=True sphinx-build -j auto -b gettext -d _build/doctrees . cpython /python-docs-es-pot
73
72
74
73
.. note::
75
74
76
- In ``.. /python-docs-es-pot`` directory, we will have the new .pot files with new strings from 3.12 branch.
75
+ In ``cpython /python-docs-es-pot`` directory, we will have the new .pot files with new strings from 3.13 branch.
77
76
All these strings will be *untranslated* at this point.
78
77
79
78
#. Now, we update our translated files form the source language (English) with new strings::
80
79
81
- sphinx-intl update --language es --pot-dir ../python-docs-es-pot --locale-dir cpython/locales/
82
-
83
- #. At this point, all the ``.po `` files will have a different comment on each translation phrase,
84
- for example::
85
-
86
- -#: ../python-docs-es/cpython/Doc/whatsnew/3.12.rst:3
87
- +#: ../Doc/whatsnew/3.12.rst:3
88
-
89
- As you can see, it added the path of the local repository, but you can
90
- remove it from it with this regular expression::
91
-
92
- sed -i **/*.po -e "s|python-docs-es/cpython/||g"
93
-
94
- .. note ::
95
-
96
- If you have your local repository cloned with a different name,
97
- please make sure to adapt the expression.
80
+ sphinx-intl update --language es --pot-dir cpython/python-docs-es-pot --locale-dir cpython/locales/
98
81
99
82
#. Pass ``powrap `` to make the column widths consistent::
100
83
@@ -116,13 +99,14 @@ We are currently in branch 3.11, and we want to update the strings from 3.12.
116
99
**Once the process is completely and you are happy with the results,
117
100
there are a few extra steps to finish the process **
118
101
119
- #. Upgrade GitHub Actions to use Python 3.12 , by updating Python version to 3.12 in the ``.github/workflows/main.yml `` file.
102
+ #. Upgrade GitHub Actions to use Python 3.13 , by updating Python version to 3.13 in the ``.github/workflows/main.yml `` file.
120
103
121
- #. Update the *Read the Docs * project to use 3.12 in the build and also as default branch/version.
104
+ #. Update the *Read the Docs * project to use 3.13 in the build and also as default branch/version.
122
105
123
106
#. Commit all the newly created files locally.
124
107
125
- #. Create branch 3.12 in the repository in order to merge changes there.
108
+ #. Create branch 3.13 in the repository in order to merge changes there.
126
109
127
- #. Inside the github project settings, set 3.12 branch as the default branch for the repository.
110
+ #. Inside the github project settings, set 3.13 branch as the default branch for the repository.
128
111
112
+ #. Create GitHub issues with [the script](../scripts/create_issue.py)
0 commit comments