Skip to content

Commit f1781f2

Browse files
Note sample workflows in commands.rst (#149)
* COmmit * Feedback
1 parent 2d35a7e commit f1781f2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/commands.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Commands for maintaining a language repository
55
This document contains instructions to guide you on managing your language
66
repository, hence helping you translate Python's documentation to your language.
77

8+
See the :doc:`workflows` for an automated alternative to this guide.
9+
810
These commands are written in Linux Shell, and should work in Windows Subsystem
911
Linux (WSL), but feel free to use the same logic in other languages e.g. Python.
1012

@@ -24,7 +26,7 @@ From inside your language repository, run:
2426

2527
.. code-block:: shell
2628
27-
BRANCH=3.13
29+
BRANCH=3.14
2830
git clone --depth 1 https://github.com/python/cpython --branch $BRANCH
2931
3032
Use ``--depth 1`` to shallow clone, which avoids downloading all the 800 MB of data
@@ -92,7 +94,7 @@ translation means pulling the translation strings.
9294
with the pot. Alternatively, you can skip it and pull translations, but new
9395
translation resources in Transifex could be not mapped, and hence wouldn't be pulled.
9496

95-
.. _generate-pot::
97+
.. _generate-pot:
9698

9799
Generating pot files
98100
^^^^^^^^^^^^^^^^^^^^

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
# ----------------------------------------------------------------------------
2929

3030
# Python versions
31-
newest = "3.13"
32-
previous = "3.12"
31+
newest = "3.14"
32+
previous = "3.13"
3333

3434
rst_prolog = f"""
3535
.. |py_new| replace:: {newest}

docs/workflows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
================
2-
GitHub Workflows
2+
Sample Workflows
33
================
44

55
All Python documentation translation repositories are hosted on `GitHub <https://github.com>`_.

0 commit comments

Comments
 (0)