From 570801869066671c6381b120b8a8052c7a627613 Mon Sep 17 00:00:00 2001 From: dalthviz Date: Fri, 11 Aug 2023 14:08:16 -0500 Subject: [PATCH] CI: Update bindings upper bound version to 6.5 --- .github/workflows/ci.yml | 5 +++-- .github/workflows/test.sh | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f1ffcc7..4576b83d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: pyside6-version: '6.4' # Python 3.11 needs 6.4+ - use-conda: 'Yes' skip-pyqt6: true # No PyQt6 conda packages yet - pyside6-version: '6.4' # Conda only has 6.4+ + pyside6-version: '6.4' # Conda only has 6.4+ for Python <3.8 - use-conda: 'No' pyqt5-version: '5.15' # Test with latest optional packages - python-version: '3.7' @@ -67,6 +67,7 @@ jobs: - python-version: '3.11' use-conda: 'No' skip-pyside2: true # Pyside2 wheels don't support Python 3.11+ + pyside6-version: '6.5' # Test upper bound - os: windows-latest python-version: '3.7' use-conda: 'Yes' @@ -84,7 +85,7 @@ jobs: - os: macos-latest python-version: '3.7' use-conda: 'No' - pyqt6-version: 6.4 # Test upper bound + pyqt6-version: 6.5 # Test upper bound pyside2-version: 5.15 # Test upper bound steps: - name: Checkout branch diff --git a/.github/workflows/test.sh b/.github/workflows/test.sh index 5ccfbc10..69267f57 100755 --- a/.github/workflows/test.sh +++ b/.github/workflows/test.sh @@ -53,11 +53,12 @@ fi # Build wheel of package git clean -xdf -e *.coverage +python -m pip install --upgrade pip python -m pip install --upgrade build python -bb -X dev -W error -m build # Install package from built wheel -echo dist/*.whl | xargs -I % python -bb -X dev -W error -W "ignore::DeprecationWarning:pip._internal.locations._distutils" -W "ignore::DeprecationWarning:distutils.command.install" -m pip install --upgrade % +echo dist/*.whl | xargs -I % python -bb -X dev -W error -W "ignore::DeprecationWarning:pip._internal.locations._distutils" -W "ignore::DeprecationWarning:distutils.command.install" -W "ignore::DeprecationWarning:pip._internal.metadata.importlib._envs" -m pip install --upgrade % # Print environment information mamba list