Skip to content

Commit

Permalink
ci: Revert to PyQt 6.7
Browse files Browse the repository at this point in the history
This reverts commits c62bf05 and 5470771
  • Loading branch information
zjp committed Jan 17, 2025
1 parent a5bd4be commit f5bff52
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions utils/ci/consolidated_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ runs:
uses: actions/cache@v4
with:
path: |
prereqs/PyQt/PyQt6_commercial-6.8.0-cp39-abi3-manylinux_2_28_x86_64.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.8.0-cp39-abi3-manylinux_2_28_x86_64.whl
prereqs/PyQt/PyQt6_commercial-6.7.1-1-cp38-abi3-manylinux_2_28_x86_64.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.7.0-cp38-abi3-manylinux_2_28_x86_64.whl
key: ${{ runner.os }}-${{ inputs.architecture }}-pyqt6

- name: Restore cached PyQt6 and PyQt6-WebEngine (Windows)
Expand All @@ -194,8 +194,8 @@ runs:
uses: actions/cache@v4
with:
path: |
prereqs/PyQt/PyQt6_commercial-6.8.0-cp39-abi3-win_amd64.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.8.0-cp39-abi3-win_amd64.whl
prereqs/PyQt/PyQt6_commercial-6.7.1-cp38-abi3-win_amd64.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.7.0-cp38-abi3-win_amd64.whl
key: ${{ runner.os }}-${{ inputs.architecture }}-pyqt6

- name: Restore cached PyQt6 and PyQt6-WebEngine (macOS)
Expand All @@ -204,8 +204,8 @@ runs:
uses: actions/cache@v4
with:
path: |
prereqs/PyQt/PyQt6_commercial-6.8.0-cp39-abi3-macosx_10_14_universal2.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.8.0-cp39-abi3-macosx_10_14_universal2.whl
prereqs/PyQt/PyQt6_commercial-6.7.1-cp38-abi3-macosx_11_0_universal2.whl
prereqs/PyQt/PyQt6_WebEngine_commercial-6.7.0-cp38-abi3-macosx_10_14_universal2.whl
key: ${{ runner.os }}-${{ inputs.architecture }}-pyqt6

- name: Restore cached seggerx dependency sources
Expand Down Expand Up @@ -242,8 +242,12 @@ runs:
shell: bash
if: ${{ steps[format('cache-pyqt6-{0}', inputs.platform)].outputs.cache-hit != 'true' }}
run: |
export PYQT_VERSION=6.8.0
export PYQTWE_VERSION=6.8.0
if [ "${{ inputs.platform }}" = "linux" ] ; then
export PYQT_VERSION=6.7.1-1
else
export PYQT_VERSION=6.7.1
fi
export PYQTWE_VERSION=6.7.0
export PYQT_URL="https://preview.rbvi.ucsf.edu/chimerax/cgi-bin/get_pyqt.py?platform=${{ inputs.platform }}&version=${PYQT_VERSION}&webengine=false&architecture=${{ inputs.architecture }}"
export PYQTWE_URL="https://preview.rbvi.ucsf.edu/chimerax/cgi-bin/get_pyqt.py?platform=${{ inputs.platform }}&version=${PYQTWE_VERSION}&webengine=true&architecture=${{ inputs.architecture }}"
curl -H "X-API-KEY: ${{ inputs.cache_key }}" ${PYQT_URL} -O -J
Expand Down

0 comments on commit f5bff52

Please sign in to comment.