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: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
-[ ] closes #xxxx (Replace xxxx with the Github issue number)
1
+
-[ ] closes #xxxx (Replace xxxx with the GitHub issue number)
2
2
-[ ][Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature
3
3
-[ ] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#pre-commit).
4
4
-[ ] Added [type annotations](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#type-hints) to new arguments/methods/functions.
Copy file name to clipboardExpand all lines: doc/source/development/maintaining.rst
+7-7
Original file line number
Diff line number
Diff line change
@@ -210,15 +210,15 @@ pandas supports point releases (e.g. ``1.4.3``) that aim to:
210
210
211
211
* e.g. If a feature worked in ``1.2`` and stopped working since ``1.3``, a fix can be applied in ``1.4.3``.
212
212
213
-
Since pandas minor releases are based on Github branches (e.g. point release of ``1.4`` are based off the ``1.4.x`` branch),
213
+
Since pandas minor releases are based on GitHub branches (e.g. point release of ``1.4`` are based off the ``1.4.x`` branch),
214
214
"backporting" means merging a pull request fix to the ``main`` branch and correct minor branch associated with the next point release.
215
215
216
-
By default, if a pull request is assigned to the next point release milestone within the Github interface,
216
+
By default, if a pull request is assigned to the next point release milestone within the GitHub interface,
217
217
the backporting process should happen automatically by the ``@meeseeksdev`` bot once the pull request is merged.
218
218
A new pull request will be made backporting the pull request to the correct version branch.
219
219
Sometimes due to merge conflicts, a manual pull request will need to be made addressing the code conflict.
220
220
221
-
If the bot does not automatically start the backporting process, you can also write a Github comment in the merged pull request
221
+
If the bot does not automatically start the backporting process, you can also write a GitHub comment in the merged pull request
222
222
to trigger the backport::
223
223
224
224
@meeseeksdev backport version-branch
@@ -271,14 +271,14 @@ being helpful on the issue tracker.
271
271
The required steps for adding a maintainer are:
272
272
273
273
1. Contact the contributor and ask their interest to join.
274
-
2. Add the contributor to the appropriate `Github Team <https://github.com/orgs/pandas-dev/teams>`_ if accepted the invitation.
274
+
2. Add the contributor to the appropriate `GitHub Team <https://github.com/orgs/pandas-dev/teams>`_ if accepted the invitation.
275
275
276
276
* ``pandas-core`` is for core team members
277
277
* ``pandas-triage`` is for pandas triage members
278
278
279
279
3. Add the contributor to the pandas Google group.
280
-
4. Create a pull request to add the contributor's Github handle to ``pandas-dev/pandas/web/pandas/config.yml``.
281
-
5. Create a pull request to add the contributor's name/Github handle to the `governance document <https://github.com/pandas-dev/pandas-governance/blob/master/people.md>`_.
280
+
4. Create a pull request to add the contributor's GitHub handle to ``pandas-dev/pandas/web/pandas/config.yml``.
281
+
5. Create a pull request to add the contributor's name/GitHub handle to the `governance document <https://github.com/pandas-dev/pandas-governance/blob/master/people.md>`_.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.0.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -654,7 +654,7 @@ Deprecations
654
654
In the next major version release, 2.0, several larger API changes are being considered without a formal deprecation such as
655
655
making the standard library `zoneinfo <https://docs.python.org/3/library/zoneinfo.html>`_ the default timezone implementation instead of ``pytz``,
656
656
having the :class:`Index` support all data types instead of having multiple subclasses (:class:`CategoricalIndex`, :class:`Int64Index`, etc.), and more.
657
-
The changes under consideration are logged in `this Github issue <https://github.com/pandas-dev/pandas/issues/44823>`_, and any
657
+
The changes under consideration are logged in `this GitHub issue <https://github.com/pandas-dev/pandas/issues/44823>`_, and any
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.6.0.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,7 @@ Other API changes
151
151
^^^^^^^^^^^^^^^^^
152
152
- Passing ``nanoseconds`` greater than 999 or less than 0 in :class:`Timestamp` now raises a ``ValueError`` (:issue:`48538`, :issue:`48255`)
153
153
- :func:`read_csv`: specifying an incorrect number of columns with ``index_col`` of now raises ``ParserError`` instead of ``IndexError`` when using the c parser.
154
+
- Default value of ``dtype`` in :func:`get_dummies` is changed to ``bool`` from ``uint8`` (:issue:`45848`)
154
155
- :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`)
155
156
- :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`)
156
157
-
@@ -222,7 +223,7 @@ Timezones
222
223
223
224
Numeric
224
225
^^^^^^^
225
-
-
226
+
- Bug in :meth:`DataFrame.add` cannot apply ufunc when inputs contain mixed DataFrame type and Series type (:issue:`39853`)
0 commit comments