Skip to content

Commit 79b1811

Browse files
DOC: build fixes
1 parent a8104e9 commit 79b1811

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

doc/source/timedeltas.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -312,17 +312,18 @@ similarly to the ``Series``. These are the *displayed* values of the ``Timedelta
312312
313313
.. _timedeltas.isoformat:
314314

315-
You can convert a ``Timedelta`` to an ISO 8601 Duration string with the
315+
You can convert a ``Timedelta`` to an `ISO 8601 Duration`_ string with the
316316
``.isoformat`` method
317317

318318
.. versionadded:: 0.20.0
319319

320320
.. ipython:: python
321+
321322
pd.Timedelta(days=6, minutes=50, seconds=3,
322323
milliseconds=10, microseconds=10,
323324
nanoseconds=12).isoformat()
324325
325-
.. _ISO 8601 duration: https://en.wikipedia.org/wiki/ISO_8601#Durations
326+
.. _ISO 8601 Duration: https://en.wikipedia.org/wiki/ISO_8601#Durations
326327

327328
.. _timedeltas.index:
328329

doc/source/tutorials.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ See `How to use this cookbook <https://github.com/jvns/pandas-cookbook#how-to-us
5757
Lessons for New pandas Users
5858
----------------------------
5959

60-
For more resources, please visit the main `repository <https://bitbucket.org/hrojas/learn-pandas>`_.
60+
For more resources, please visit the main `repository <https://bitbucket.org/hrojas/learn-pandas>`__.
6161

6262
- `01 - Lesson: <http://nbviewer.ipython.org/urls/bitbucket.org/hrojas/learn-pandas/raw/master/lessons/01%20-%20Lesson.ipynb>`_
6363
- Importing libraries
@@ -128,7 +128,7 @@ There are four sections covering selected topics as follows:
128128
Exercises for New Users
129129
-----------------------
130130
Practice your skills with real data sets and exercises.
131-
For more resources, please visit the main `repository <https://github.com/guipsamora/pandas_exercises>`_.
131+
For more resources, please visit the main `repository <https://github.com/guipsamora/pandas_exercises>`__.
132132

133133
- `01 - Getting & Knowing Your Data <https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data>`_
134134

doc/source/whatsnew/v0.20.0.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ URLs and paths are now both inferred using their file extensions. Additionally,
8383
support for bz2 compression in the python 2 c-engine improved (:issue:`14874`).
8484

8585
.. ipython:: python
86+
8687
url = 'https://github.com/{repo}/raw/{branch}/{path}'.format(
8788
repo = 'pandas-dev/pandas',
8889
branch = 'master',
@@ -147,7 +148,7 @@ Other enhancements
147148
Backwards incompatible API changes
148149
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149150

150-
.. _whatsnew_0200.api_breaking.deprecate_ix
151+
.. _whatsnew_0200.api_breaking.deprecate_ix:
151152

152153
Deprecate .ix
153154
^^^^^^^^^^^^^
@@ -194,7 +195,7 @@ Using ``.iloc``. Here we will get the location of the 'A' column, then use *posi
194195
df.iloc[[0, 2], df.columns.get_loc('A')]
195196

196197

197-
.. _whatsnew_0200.api_breaking.index_map
198+
.. _whatsnew_0200.api_breaking.index_map:
198199

199200
Map on Index types now return other Index types
200201
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)