Skip to content

Commit 60d3e95

Browse files
committed
feat(client): fix jobs
1 parent 1493af9 commit 60d3e95

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,14 @@ client = QaaSClient(
2525

2626
platforms = client.list_platforms(name="aer_simulation_pop_c16m128")
2727

28-
assert platforms is not None
29-
assert len(platforms) == 1
30-
3128
target_platform = platforms[0]
3229

33-
assert target_platform.id is not None
34-
3530
session = client.create_session(platform_id=target_platform.id, max_duration="2min", max_idle_duration="2min")
3631

37-
assert session is not None
38-
assert session.id is not None
39-
assert session.platform_id == target_platform.id
40-
4132
while session.status == "starting":
4233
session = client.get_session(session.id)
4334
time.sleep(3)
4435

45-
assert session.status == "running"
46-
4736
client.delete_session(session.id)
4837
```
4938

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name="scaleway_qaas_client",
25-
version="0.1.3",
25+
version="0.1.4",
2626
project_urls={
2727
"Documentation": "https://www.scaleway.com/en/quantum-as-a-service/",
2828
"Source": "https://github.com/scaleway/scaleway-qaas-client-pythom",

0 commit comments

Comments
 (0)