Skip to content

Commit 9d1c70b

Browse files
committed
skip test installation error for python 3.12 as well.
Signed-off-by: Mitchell <mitch_dz@hotmail.com>
1 parent 8cf9672 commit 9d1c70b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python_metapackages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ jobs:
201201
set -e && check_package=cuda-quantum
202202
;;
203203
*)
204-
# Skip conflict test entirely on Python 3.13 (cuda-quantum==0.8.0 not available)
205-
if [ "${{ matrix.python_version }}" = "3.13" ]; then
206-
echo "::warning::Skipping conflict test on Python 3.13 (cuda-quantum==0.8.0 unavailable)."
204+
# Skip conflict test entirely on Python 3.{13,12} (cuda-quantum==0.8.0 not available)
205+
if [ "${{ matrix.python_version }}" = "3.12" ] || [ "${{ matrix.python_version }}" = "3.13" ]; then
206+
echo "::warning::Skipping conflict test on Python 3.{12,13} (cuda-quantum==0.8.0 unavailable)."
207207
test_conflicting="<skipped>"
208208
check_package=cudaq
209209
else

0 commit comments

Comments
 (0)