Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum api ibmq",
Expand Down
2 changes: 1 addition & 1 deletion test/ibmq/websocket/test_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def tearDownClass(cls):
# Suppress websockets deprecation warning
warnings.filterwarnings("ignore", category=PendingDeprecationWarning)
# Manually cancel any pending asyncio tasks.
pending = asyncio.Task.all_tasks()
pending = asyncio.all_tasks()
for task in pending:
task.cancel()
try:
Expand Down