Skip to content

Commit c624187

Browse files
committed
Add missing include
1 parent 4d3f3a9 commit c624187

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/linux-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
channel-priority: strict
107107
- name: Install dependencies
108108
shell: bash -l {0}
109-
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}.yml
109+
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}_${{ matrix.QT_BINDING_VERSION }}.yml
110110
- name: Install Package
111111
shell: bash -l {0}
112112
run: pip install -e .

.github/workflows/macos-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ jobs:
7575
matrix:
7676
PYTHON_VERSION: ['3.9', '3.13']
7777
QT_BINDING: ['pyqt6', 'pyside6']
78+
include:
79+
- QT_BINDING_VERSION: 'latest'
7880
steps:
7981
- name: Checkout branch
8082
uses: actions/checkout@v1
@@ -89,7 +91,7 @@ jobs:
8991
channel-priority: strict
9092
- name: Install package dependencies
9193
shell: bash -l {0}
92-
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}.yml
94+
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}_${{ matrix.QT_BINDING_VERSION }}.yml
9395
- name: Install Package
9496
shell: bash -l {0}
9597
run: pip install -e .

.github/workflows/windows-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
channel-priority: strict
9292
- name: Install package dependencies
9393
shell: bash -l {0}
94-
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}.yml
94+
run: conda env update --file requirements/environment_tests_${{ matrix.QT_BINDING }}_${{ matrix.QT_BINDING_VERSION }}.yml
9595
- name: Install Package
9696
shell: bash -l {0}
9797
run: pip install -e .

0 commit comments

Comments
 (0)