Skip to content
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

PySide6 support #150

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ jobs:
- name: PySide2
tox: pyside2
dependencies: qt5
- name: PySide6
tox: pyside6
dependencies: qt6
- name: asyncio
tox: asyncio
dependencies: asyncio
Expand All @@ -121,6 +124,10 @@ jobs:
major: 2
reactor:
tox: pyside2
- python:
major: 2
reactor:
tox: pyside6
- python:
major: 2
reactor:
Expand All @@ -133,6 +140,10 @@ jobs:
implementation: pypy
reactor:
tox: pyside2
- python:
implementation: pypy
reactor:
tox: pyside6
steps:
- uses: actions/checkout@v2
- name: Enable Problem Matchers
Expand Down Expand Up @@ -173,6 +184,11 @@ jobs:
run: |
apt-get update --yes
apt-get install --yes libgl1
- name: Install Linux Qt6 dependencies
if: matrix.os.python_platform == 'linux' && matrix.reactor.dependencies == 'qt6'
run: |
apt-get update --yes
apt-get install --yes libgl1 libegl1
- name: Install
run: |
pip install tox
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
# >= 0.6.3 for PySide2 extra version constraints
"qt5reactor[pyside2]>=0.6.3",
],
"pyside6": [
# TODO: specify version
# >= 0.6.x for PySide6 support
"qt5reactor[pyside6] @ git+https://github.com/sveinse/qt5reactor@feature-pyside6",
],
"pyqt5": ["qt5reactor[pyqt5]>=0.6.2"],
},
classifiers=[
Expand Down
10 changes: 6 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,26 @@ envlist=
py{27,py27,35,36,37,38,39,py37,py38}-defaultreactor
py{35,36,37,38,39,py37,py38}-asyncioreactor
py{35,36,37,38,39}-pyqt5reactor
py{35,36,37,38,39}-pyside2reactor
py{35,36,37,38,39}-pyside{2,6}}reactor
linting

[testenv]
deps=
greenlet
pytest
twisted
pyqt5reactor,pyside2reactor: pytest-qt
pyqt5reactor,pyside2reactor: pytest-xvfb
pyqt5reactor,pyside2reactor: pywin32; sys_platform == 'win32'
pyqt5reactor,pyside{2,6}reactor: pytest-qt
pyqt5reactor,pyside{2,6}reactor: pytest-xvfb
pyqt5reactor,pyside{2,6}reactor: pywin32; sys_platform == 'win32'
extras=
pyqt5reactor: pyqt5
pyside2reactor: pyside2
pyside6reactor: pyside6
setenv=
defaultreactor: REACTOR = default
pyqt5reactor: REACTOR = qt5reactor
pyside2reactor: REACTOR = qt5reactor
pyside6reactor: REACTOR = qt5reactor
asyncioreactor: REACTOR = asyncio
commands=
pytest --reactor={env:REACTOR}
Expand Down