We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf9672 commit 9d1c70bCopy full SHA for 9d1c70b
.github/workflows/python_metapackages.yml
@@ -201,9 +201,9 @@ jobs:
201
set -e && check_package=cuda-quantum
202
;;
203
*)
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)."
+ # Skip conflict test entirely on Python 3.{13,12} (cuda-quantum==0.8.0 not available)
+ if [ "${{ matrix.python_version }}" = "3.12" ] || [ "${{ matrix.python_version }}" = "3.13" ]; then
+ echo "::warning::Skipping conflict test on Python 3.{12,13} (cuda-quantum==0.8.0 unavailable)."
207
test_conflicting="<skipped>"
208
check_package=cudaq
209
else
0 commit comments