Skip to content

Commit

Permalink
PR: Update bindings upper bound version to 6.5 (CI) (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz authored Aug 14, 2023
2 parents 9d1f3ed + 5708018 commit d44e4cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d44e4cc

Please sign in to comment.