Skip to content

Commit

Permalink
commit on skip
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelishman committed Sep 23, 2024
1 parent 50129f7 commit 6907253
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/qpy_compat/get_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"""List the versions of Qiskit and Terra that should be tested for QPY compatibility."""

import json
import sys
import urllib.request

import packaging.version
Expand Down Expand Up @@ -55,6 +56,10 @@ def available_versions_for_package(package, min_version=None, max_version=None):
for release in payload
if release["packagetype"] == "bdist_wheel"
):
print(
f"skipping '{other_version}', which has no installable binary artifacts",
file=sys.stderr,
)
continue
yield other_version

Expand Down

0 comments on commit 6907253

Please sign in to comment.