@@ -95,28 +95,28 @@ yourself, it is not difficult to build Matplotlib from source.
95
95
96
96
The easiest way to get the latest development version to start contributing
97
97
is to go to the git `repository <https://github.com/matplotlib/matplotlib >`_
98
- and run: : :
98
+ and run::
99
99
100
100
git clone https://github.com/matplotlib/matplotlib.git
101
101
102
102
If you're developing, it's better to do it in editable mode. The reason why
103
103
is that pytest's test discovery only works for Matplotlib
104
104
if installation is done this way. Also, editable mode allows your code changes
105
105
to be instantly propagated to your library code without reinstalling (though
106
- you will have to restart your python process / kernel): : :
106
+ you will have to restart your python process / kernel)::
107
107
108
108
python -m pip install -e .
109
109
110
110
If you're not developing, it can be installed from the source directory with
111
- a simple ::
111
+ a simple::
112
112
113
113
python -m pip install .
114
114
115
- To run the tests you will need to install some additional dependencies: : :
115
+ To run the tests you will need to install some additional dependencies::
116
116
117
117
python -m pip install -r requirements/dev/dev-requirements.txt
118
118
119
- .. warning ::
119
+ .. warning ::
120
120
121
121
The following instructions in this section are for very custom
122
122
installations of Matplotlib. Proceed with caution because these instructions
@@ -139,7 +139,7 @@ Dependencies
139
139
------------
140
140
141
141
Matplotlib will automatically install dependencies when you install with
142
- `pip `, so this section is mostly for your reference.
142
+ `` pip ` `, so this section is mostly for your reference.
143
143
144
144
Matplotlib requires the following dependencies:
145
145
@@ -269,7 +269,7 @@ and on Windows:
269
269
- ``ttconv ``: a TrueType font utility.
270
270
271
271
If you go this route but need to reset and rebuild to change your settings,
272
- remember to clear your artifacts before re-building: : :
272
+ remember to clear your artifacts before re-building::
273
273
274
274
git clean -xfd
275
275
0 commit comments