Skip to content

Commit

Permalink
Merge branch 'main' into expose-circuit-data
Browse files Browse the repository at this point in the history
  • Loading branch information
raynelfss authored Aug 23, 2024
2 parents 0d00c3d + 6b6efc7 commit d31af69
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ blank_issues_enabled: true
contact_links:
- name: Non-API docs issues
url: https://github.com/Qiskit/documentation/issues/new/choose
about: Open an issue about documentation in the Start, Build, Transpile, Verify, Run, or Migration guides sections of docs.quantum.ibm.com (non-API documentation)
about: Open an issue about documentation in the guides and additional resources sections of docs.quantum.ibm.com (non-API documentation)
8 changes: 8 additions & 0 deletions test/utils/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,14 @@ def setUpClass(cls):
module="qiskit_aer",
)

# Safe to remove once `FakeBackend` is removed (2.0)
warnings.filterwarnings(
"ignore", # If "default", it floods the CI output
category=DeprecationWarning,
message=r".*from_backend using V1 based backend is deprecated as of Aer 0.15*",
module="qiskit.providers.fake_provider.fake_backend",
)

allow_DeprecationWarning_message = [
r"The property ``qiskit\.circuit\.bit\.Bit\.(register|index)`` is deprecated.*",
]
Expand Down

0 comments on commit d31af69

Please sign in to comment.