-
Notifications
You must be signed in to change notification settings - Fork 257
2.0/2.1 experimental changes #448
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
Draft
MHendricks
wants to merge
22
commits into
mottosso:master_2.0
Choose a base branch
from
blurstudio-forks:mikeh/2.X_experimental
base: master_2.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
2.0/2.1 experimental changes #448
MHendricks
wants to merge
22
commits into
mottosso:master_2.0
from
blurstudio-forks:mikeh/2.X_experimental
Conversation
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
7c2737a to
9e20d38
Compare
afe5d1d to
fffb1d8
Compare
fffb1d8 to
047c2c9
Compare
4d3695c to
2af4cee
Compare
Excluding required python 2 specific fixes
Leaving Python 3 only fixes for now
Prevent json parsing errors caused by printing when printing json
Cy2020 uses python 3.7 and Qt 5.13. Correct Cy2021 test to use python 3.7 Improve py 3.7 PyQt5-sip workaround in tox. This prevents needing to have visual studio installed to compile sdist by forcing it to use versions providing pre-built wheels.
On linux these require the pulse audio libraries.
Sorts PySide before PyQt and Qt 6 before Qt 5. Also Remove QIntList from membership report. It will not be common for the 2.0 versions of Qt.py because it is not available in PySide2, PyQt5 or PyQt6. It's also adding a lot of visual clutter being present in ~50 modules in PySide6.
Uses the common_members.json generated list Update membership.py to exclude platform specific members
This includes a workaround for python 3.7 and PySide2 in python 3.9.
Update github actions for artifact upload/download
This enables mapping QAction to the QtGui for the PySide6 reference, but still add it to QtWidgets for backwards compatibility.
Adds support for adding `Qt.QtOpenGl` and other modules. These modules don't actually have any common members because the different bindings used unique module names. For example in Qt6 all QtOpenGL functions are stored under QtOpenGL, but in PySide2 they are stored under QtGui and QtOpenGLFunctions, and PyQt5 is ... complex. Also moves most of the extras passed to _setup into the `__extras__` key of `_misplaced_members[binding]`. This allows QtSiteConfig to customize them. Remove Qt 5.11 legacy support for PyQt5 sip import. QtWidgets.QFileSystemModel is now mapped to all misplaced bindings and tested.
This shows how to use QtSiteConfig to add this module as well as modifying the new `__extras__` misplaced member feature.
This adds several common members that had to be excluded when supporting Qt 5.13.
2af4cee to
5f803f1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request should not be merged, it is just for experimentation.
This branch is used to track changes for the upcoming 2.0 and 2.1 releases of Qt.py. I will be force pushing to this branch often and refactoring its history. I will eventually make several pull requests from this commit history once the development is done.
Currently I'm planning to make two minor releases of Qt.py 2.0.
This allows us to be able to support updates for Qt 5.13 by releasing Qt.py 2.0.1, 2.0.2, etc at the same time as Qt.py 2.1 can focus on the modern releases of Python and Qt.