@@ -82,58 +82,4 @@ a pull request directly. It's best to avoid filing a single issue for an entire
8282section containing multiple problems; instead, file several issues so that it
8383is easier to break the work up for multiple people and more efficient review.
8484
85-
86- .. _helping-with-the-developers-guide :
87-
88- Helping with the Developer's Guide
89- ----------------------------------
90-
91- .. highlight :: console
92-
93- The Developer's Guide (what you're reading now) uses the same process as the
94- main Python documentation, except for some small differences. The source
95- lives in a `separate repository `_ and bug reports should be submitted to the
96- `devguide GitHub tracker `_.
97-
98- Our devguide workflow uses continuous integration and deployment so changes to
99- the devguide are normally published when the pull request is merged. Changes
100- to CPython documentation follow the workflow of a CPython release and are
101- published in the release.
102-
103-
104- Developer's Guide workflow
105- --------------------------
106-
107- To submit a :ref: `pull request <pullrequest >`, you can fork the
108- `devguide repo `_ to your GitHub account and clone it using::
109-
110- $ git clone https://github.com/<your_username>/devguide
111-
112- For your PR to be accepted, you will also need to sign the
113- :ref: `contributor agreement <cla >`.
114-
115- To build the devguide, some additional dependencies are required (most
116- importantly, `Sphinx `_), and the standard way to install dependencies in
117- Python projects is to create a virtualenv, and then install dependencies from
118- a ``requirements.txt `` file. For your convenience, this is all *automated for
119- you *. To build the devguide on a Unix-like system use::
120-
121- $ make html
122-
123- in the checkout directory. On Windows use:
124-
125- .. code-block :: doscon
126-
127- > .\make html
128-
129- You will find the generated files in ``_build/html `` or, if you use
130- ``make htmlview ``, the docs will be opened in a browser once the build
131- completes. Note that ``make check `` runs automatically when you submit
132- a :ref: `pull request <pullrequest >`. You may wish to run ``make check ``
133- and ``make linkcheck `` to make sure that it runs without errors.
134-
135- .. _separate repository :
136- .. _devguide repo : https://github.com/python/devguide
137- .. _devguide GitHub tracker : https://github.com/python/devguide/issues
138- .. _Sphinx : https://www.sphinx-doc.org/
13985.. _issue tracker : https://github.com/python/cpython/issues
0 commit comments