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
pandas is a community-driven open source project developed by a large group
8
+
of `contributors <https://github.com/pandas-dev/pandas/graphs/contributors>`_
9
+
and a smaller group of `maintainers <https://pandas.pydata.org/about/team.html>`_.
10
+
The pandas leadership has made a strong commitment to creating an open,
11
+
inclusive, and positive community. Please read the pandas `Code of Conduct
12
+
<https://pandas.pydata.org/community/coc.html>`_ for guidance on how to
13
+
interact with others in a way that makes the community thrive.
14
+
15
+
We offer several meetings and communication channels to share knowledge and
16
+
connect with others within the pandas community.
17
+
18
+
Community meeting
19
+
-----------------
20
+
21
+
The pandas Community Meeting is a regular sync meeting for the project's
22
+
maintainers which is open to the community. Everyone is welcome to attend and
23
+
contribute to conversations.
24
+
25
+
The meetings take place on the second Wednesday of each month at 18:00 UTC.
26
+
27
+
The minutes of past meetings are available in `this Google Document <https://docs.google.com/document/d/1tGbTiYORHiSPgVMXawiweGJlBw5dOkVJLY-licoBmBU/edit?usp=sharing>`__.
28
+
29
+
30
+
New contributor meeting
31
+
-----------------------
32
+
33
+
On the third Wednesday of the month, we hold meetings to welcome and support
34
+
new contributors in our community.
35
+
36
+
|👋 you all are invited
37
+
|💬 everyone can present (add yourself to the hackMD agenda)
38
+
|👀 anyone can sit in and listen
39
+
40
+
Attendees are new and experienced contributors, as well as a few maintainers.
41
+
We aim to answer questions about getting started, or help with work in
42
+
progress when possible, as well as get to know each other and share our
43
+
learnings and experiences.
44
+
45
+
The agenda for the next meeting and minutes of past meetings are available in
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.1.rst
+1
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@ Fixed regressions
85
85
- Fixed Regression in :meth:`DataFrameGroupBy.apply` when user defined function is called on an empty dataframe (:issue:`47985`)
86
86
- Fixed regression in :meth:`DataFrame.apply` when passing non-zero ``axis`` via keyword argument (:issue:`48656`)
87
87
- Fixed regression in :meth:`Series.groupby` and :meth:`DataFrame.groupby` when the grouper is a nullable data type (e.g. :class:`Int64`) or a PyArrow-backed string array, contains null values, and ``dropna=False`` (:issue:`48794`)
88
+
- Fixed regression in :meth:`DataFrame.to_parquet` raising when file name was specified as ``bytes`` (:issue:`48944`)
88
89
- Fixed regression in :class:`ExcelWriter` where the ``book`` attribute could no longer be set; however setting this attribute is now deprecated and this ability will be removed in a future version of pandas (:issue:`48780`)
89
90
- Fixed regression causing memory leak when finding stacklevel when emitting warnings (:issue:`49052`)
@@ -112,7 +112,7 @@ Optional libraries below the lowest tested version may still work, but are not c
112
112
113
113
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
114
114
115
-
.. _whatsnew_160.api_breaking.other:
115
+
.. _whatsnew_200.api_breaking.other:
116
116
117
117
Other API changes
118
118
^^^^^^^^^^^^^^^^^
@@ -121,18 +121,19 @@ Other API changes
121
121
- Default value of ``dtype`` in :func:`get_dummies` is changed to ``bool`` from ``uint8`` (:issue:`45848`)
122
122
- :meth:`DataFrame.astype`, :meth:`Series.astype`, and :meth:`DatetimeIndex.astype` casting datetime64 data to any of "datetime64[s]", "datetime64[ms]", "datetime64[us]" will return an object with the given resolution instead of coercing back to "datetime64[ns]" (:issue:`48928`)
123
123
- :meth:`DataFrame.astype`, :meth:`Series.astype`, and :meth:`DatetimeIndex.astype` casting timedelta64 data to any of "timedelta64[s]", "timedelta64[ms]", "timedelta64[us]" will return an object with the given resolution instead of coercing to "float64" dtype (:issue:`48963`)
124
+
- Passing a ``np.datetime64`` object with non-nanosecond resolution to :class:`Timestamp` will retain the input resolution if it is "s", "ms", or "ns"; otherwise it will be cast to the closest supported resolution (:issue:`49008`)
- Performance improvement in :meth:`MultiIndex.size` (:issue:`48723`)
142
143
- Performance improvement in :meth:`MultiIndex.union` without missing values and without duplicates (:issue:`48505`)
143
144
- Performance improvement in :meth:`MultiIndex.difference` (:issue:`48606`)
145
+
- Performance improvement in :class:`MultiIndex` set operations with sort=None (:issue:`49010`)
144
146
- Performance improvement in :meth:`.DataFrameGroupBy.mean`, :meth:`.SeriesGroupBy.mean`, :meth:`.DataFrameGroupBy.var`, and :meth:`.SeriesGroupBy.var` for extension array dtypes (:issue:`37493`)
145
147
- Performance improvement in :meth:`MultiIndex.isin` when ``level=None`` (:issue:`48622`)
146
148
- Performance improvement in :meth:`Index.union` and :meth:`MultiIndex.union` when index contains duplicates (:issue:`48900`)
@@ -158,7 +160,7 @@ Performance improvements
158
160
- Performance improvement in :class:`DataFrameGroupBy` and :class:`SeriesGroupBy` when ``by`` is a categorical type and ``sort=False`` (:issue:`48976`)
0 commit comments