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
Copy file name to clipboardExpand all lines: .travis.yml
+19-16
Original file line number
Diff line number
Diff line change
@@ -30,31 +30,34 @@ matrix:
30
30
- python: 3.5
31
31
32
32
include:
33
-
- dist: trusty
34
-
env:
33
+
- env:
35
34
- JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml" PATTERN="(not slow and not network)"
36
35
37
-
- dist: trusty
38
-
env:
36
+
- env:
39
37
- JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network)"
40
38
41
-
- dist: trusty
42
-
env:
43
-
- JOB="3.6, locale" ENV_FILE="ci/deps/travis-36-locale.yaml" PATTERN="((not slow and not network) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8"
39
+
- env:
40
+
- JOB="3.6, locale" ENV_FILE="ci/deps/travis-36-locale.yaml" PATTERN="((not slow and not network) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1"
41
+
services:
42
+
- mysql
43
+
- postgresql
44
44
45
-
- dist: trusty
46
-
env:
47
-
- JOB="3.6, coverage" ENV_FILE="ci/deps/travis-36-cov.yaml" PATTERN="((not slow and not network) or (single and db))" PANDAS_TESTING_MODE="deprecate" COVERAGE=true
45
+
- env:
46
+
- JOB="3.6, coverage" ENV_FILE="ci/deps/travis-36-cov.yaml" PATTERN="((not slow and not network) or (single and db))" PANDAS_TESTING_MODE="deprecate" COVERAGE=true SQL="1"
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.0.0.rst
+7-2
Original file line number
Diff line number
Diff line change
@@ -205,6 +205,8 @@ Other enhancements
205
205
(:meth:`~DataFrame.to_parquet` / :func:`read_parquet`) using the `'pyarrow'` engine
206
206
now preserve those data types with pyarrow >= 1.0.0 (:issue:`20612`).
207
207
- The ``partition_cols`` argument in :meth:`DataFrame.to_parquet` now accepts a string (:issue:`27117`)
208
+
- :func:`to_parquet` now appropriately handles the ``schema`` argument for user defined schemas in the pyarrow engine. (:issue: `30270`)
209
+
208
210
209
211
Build Changes
210
212
^^^^^^^^^^^^^
@@ -486,6 +488,7 @@ Documentation Improvements
486
488
Deprecations
487
489
~~~~~~~~~~~~
488
490
491
+
- :meth:`Series.item` and :meth:`Index.item` have been _undeprecated_ (:issue:`29250`)
489
492
- ``Index.set_value`` has been deprecated. For a given index ``idx``, array ``arr``,
490
493
value in ``idx`` of ``idx_val`` and a new value of ``val``, ``idx.set_value(arr, idx_val, val)``
491
494
is equivalent to ``arr[idx.get_loc(idx_val)] = val``, which should be used instead (:issue:`28621`).
@@ -681,6 +684,7 @@ Categorical
681
684
same type as if one used the :meth:`.str.` / :meth:`.dt.` on a :class:`Series` of that type. E.g. when accessing :meth:`Series.dt.tz_localize` on a
682
685
:class:`Categorical` with duplicate entries, the accessor was skipping duplicates (:issue:`27952`)
683
686
- Bug in :meth:`DataFrame.replace` and :meth:`Series.replace` that would give incorrect results on categorical data (:issue:`26988`)
687
+
- Bug where calling :meth:`Categorical.min` or :meth:`Categorical.max` on an empty Categorical would raise a numpy exception (:issue:`30227`)
684
688
685
689
686
690
Datetimelike
@@ -702,6 +706,8 @@ Datetimelike
702
706
- Bug in :attr:`Timestamp.resolution` being a property instead of a class attribute (:issue:`29910`)
703
707
- Bug in :func:`pandas.to_datetime` when called with ``None`` raising ``TypeError`` instead of returning ``NaT`` (:issue:`30011`)
704
708
- Bug in :func:`pandas.to_datetime` failing for `deques` when using ``cache=True`` (the default) (:issue:`29403`)
709
+
- Bug in :meth:`Series.item` with ``datetime64`` or ``timedelta64`` dtype, :meth:`DatetimeIndex.item`, and :meth:`TimedeltaIndex.item` returning an integer instead of a :class:`Timestamp` or :class:`Timedelta` (:issue:`30175`)
710
+
-
705
711
706
712
Timedelta
707
713
^^^^^^^^^
@@ -797,7 +803,6 @@ I/O
797
803
- Bug in :func:`read_json` where default encoding was not set to ``utf-8`` (:issue:`29565`)
798
804
- Bug in :class:`PythonParser` where str and bytes were being mixed when dealing with the decimal field (:issue:`29650`)
799
805
- :meth:`read_gbq` now accepts ``progress_bar_type`` to display progress bar while the data downloads. (:issue:`29857`)
800
-
-
801
806
802
807
Plotting
803
808
^^^^^^^^
@@ -862,7 +867,7 @@ ExtensionArray
862
867
863
868
- Bug in :class:`arrays.PandasArray` when setting a scalar string (:issue:`28118`, :issue:`28150`).
864
869
- Bug where nullable integers could not be compared to strings (:issue:`28930`)
865
-
-
870
+
- Bug where :class:`DataFrame` constructor raised ValueError with list-like data and ``dtype`` specified (:issue:`30280`)
0 commit comments