diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 5de9e158bcdb6..90a666dc34ed7 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -24,6 +24,7 @@ if [ "$DOC" ]; then source activate pandas mv "$TRAVIS_BUILD_DIR"/doc /tmp + mv "$TRAVIS_BUILD_DIR/LICENSE" /tmp # included in the docs. cd /tmp/doc echo ############################### diff --git a/doc/source/api.rst b/doc/source/api.rst index a5d24302e69e2..5e794c11658e8 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -2576,4 +2576,3 @@ objects. generated/pandas.Series.ix generated/pandas.Series.imag generated/pandas.Series.real - generated/pandas.Timestamp.offset diff --git a/doc/source/io.rst b/doc/source/io.rst index 68b431925d983..ff505f525fc22 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -2263,7 +2263,7 @@ round-trippable manner. new_df.dtypes Please note that the literal string 'index' as the name of an :class:`Index` -is not round-trippable, nor are any names beginning with 'level_' within a +is not round-trippable, nor are any names beginning with ``'level_'`` within a :class:`MultiIndex`. These are used by default in :func:`DataFrame.to_json` to indicate missing values and the subsequent read cannot distinguish the intent. diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index 86cff4a358975..adb4cdf2974a0 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -198,8 +198,9 @@ This could also potentially speed up the conversion considerably. pd.to_datetime('12-11-2010 00:00', format='%d-%m-%Y %H:%M') For more information on the choices available when specifying the ``format`` -option, see the Python `datetime documentation -` +documentation. If you build an extension array, publicize it on our +:ref:`ecosystem page `. + +.. _cyberpandas: https://cyberpandas.readthedocs.io/en/latest/ + .. _whatsnew_0230.enhancements.other: Other Enhancements diff --git a/pandas/core/series.py b/pandas/core/series.py index 89075e5e6acbb..30e0319346961 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -468,7 +468,7 @@ def asobject(self): .. deprecated :: 0.23.0 - Use ``astype(object) instead. + Use ``astype(object)`` instead. *this is an internal non-public method* """