-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
BUG: upgrade to PyQt6 to fix arm64 docker build #62176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Alvaro-Kothe
wants to merge
33
commits into
pandas-dev:main
from
Alvaro-Kothe:fix/arm64-docker-build
Closed
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
119d3cd
fix: use `PyQt6` instead of `PyQt5`
Alvaro-Kothe d25b7bb
chore: use latest pyqt version available on conda repo
Alvaro-Kothe 3f109b6
ci(deps): install PyQt6 with pip
Alvaro-Kothe ccc9b9a
fix: replace pyqt with pyqt6
Alvaro-Kothe 58bd51a
chore: use correct capitalization for PyQt
Alvaro-Kothe 13d75d3
docs(whatsnew): add PyQt6 support to whats new
Alvaro-Kothe 1a7b249
docs(install): keep old pyqt5 minimum version
Alvaro-Kothe ec59ea1
fix: turn generator into tuple for correct error message
Alvaro-Kothe ce99f81
fix: let `getattr` raise `AttributeError` directly
Alvaro-Kothe e40d74c
Merge branch 'main' into fix/arm64-docker-build
Alvaro-Kothe 7b32838
Merge remote-tracking branch 'main' into fix/arm64-docker-build
Alvaro-Kothe 96aae6e
doc: remove extra space between bar and PyQt6
Alvaro-Kothe ada5ef6
Merge remote-tracking branch 'upstream/main' into fix/arm64-docker-build
Alvaro-Kothe 2a7ebf7
docs(install): remove `PyQt4` dependency
Alvaro-Kothe 31b17eb
test(clipboard): parametrize qt tests to use multiple versions
Alvaro-Kothe 13adf24
test: add xfail mark when a qt version isn't available
Alvaro-Kothe 6ab6534
ci: re-add PyQt5 as a CI dependency
Alvaro-Kothe 7f4f993
ci(deps): rename PyQt5 to pyqt
Alvaro-Kothe 1568f0c
test: be more specific about QtWidgets import
Alvaro-Kothe 1fca531
test: fix `ModuleNotFoundError`
Alvaro-Kothe 49734bf
test: match clipboard with PyQt
Alvaro-Kothe d0012e8
fix: fix PyQt5 dependency generator for conda
Alvaro-Kothe dafc4d0
ci: move dependencies and re-add pyqt5 to min_versions
Alvaro-Kothe 01fd3f4
docs(install): make clipboard compatibility more explicit
Alvaro-Kothe 4f5c05c
Merge remote-tracking branch 'upstream/main' into fix/arm64-docker-build
Alvaro-Kothe d009b80
Merge branch 'main' into fix/arm64-docker-build
Alvaro-Kothe a1c98df
test: undo changes in clipboard tests
Alvaro-Kothe d7028dc
chore: use `PyQt5` for minimum instead of `PyQt6`
Alvaro-Kothe 2fb3e83
ci(clipboard): use `PyQt6` instead of `PyQt5` for non minimum tests
Alvaro-Kothe 25db090
fix: remove pyqt5 from dev dependencies in favour of pyqt6
Alvaro-Kothe 2b90647
ci(docker-build): build on arm64
Alvaro-Kothe 72ca4e9
fix: add pyside6 support
Alvaro-Kothe d5df873
docs(clipboard): update note on clipboard dependencies
Alvaro-Kothe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Qt clipboard documentation states that:
The way that pandas currently uses the clipboard on Linux doesn't trigger any event, which doesn't trigger any clipboard modification.
Since I am on Linux (Wayland), here is an example of how it is not reliable:
Although the Qt bindings aren't reliable, the subprocess calling
wl-copy
works fine.