Fixes a bug where Series.iloc assignment incorrectly converted dictionary values to Series objects when the target Series had dtype="object". This issue occurred due to improper handling in the Copy-on-Write (CoW) implementation.
#32586
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Comment Commands | |
| on: | |
| issue_comment: | |
| types: created | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| preview_docs: | |
| runs-on: ubuntu-24.04 | |
| if: github.event.issue.pull_request && github.event.comment.body == '/preview' | |
| concurrency: | |
| group: ${{ github.actor }}-preview-docs | |
| steps: | |
| - uses: pandas-dev/[email protected] | |
| with: | |
| previewer-server: "https://pandas.pydata.org/preview" | |
| artifact-job: "Doc Build and Upload" |