You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml" PATTERN="(not slow and not network and not clipboard)"
32
32
@@ -40,6 +40,9 @@ matrix:
40
40
- postgresql
41
41
42
42
- env:
43
+
# Enabling Deprecations when running tests
44
+
# PANDAS_TESTING_MODE="deprecate" causes DeprecationWarning messages to be displayed in the logs
45
+
# See pandas/_testing.py for more details.
43
46
- JOB="3.6, coverage" ENV_FILE="ci/deps/travis-36-cov.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" PANDAS_TESTING_MODE="deprecate" COVERAGE=true SQL="1"
44
47
services:
45
48
- mysql
@@ -70,7 +73,6 @@ before_install:
70
73
# This overrides travis and tells it to look nowhere.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.1.0.rst
+3-2
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Categorical
60
60
Datetimelike
61
61
^^^^^^^^^^^^
62
62
- Bug in :class:`Timestamp` where constructing :class:`Timestamp` from ambiguous epoch time and calling constructor again changed :meth:`Timestamp.value` property (:issue:`24329`)
63
-
-
63
+
-:meth:`DatetimeArray.searchsorted`, :meth:`TimedeltaArray.searchsorted`, :meth:`PeriodArray.searchsorted` not recognizing non-pandas scalars and incorrectly raising ``ValueError`` instead of ``TypeError`` (:issue:`30950`)
64
64
-
65
65
66
66
Timedelta
@@ -102,7 +102,7 @@ Interval
102
102
103
103
Indexing
104
104
^^^^^^^^
105
-
105
+
- Bug in slicing on a :class:`DatetimeIndex` with a partial-timestamp dropping high-resolution indices near the end of a year, quarter, or month (:issue:`31064`)
106
106
-
107
107
-
108
108
@@ -142,6 +142,7 @@ Reshaping
142
142
143
143
-
144
144
- Bug in :meth:`DataFrame.pivot_table` when only MultiIndexed columns is set (:issue:`17038`)
145
+
- Fix incorrect error message in :meth:`DataFrame.pivot` when ``columns`` is set to ``None``. (:issue:`30924`)
145
146
- Bug in :func:`crosstab` when inputs are two Series and have tuple names, the output will keep dummy MultiIndex as columns. (:issue:`18321`)
0 commit comments