@planqk/planqk-service-sdk 2.8.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitlab-ci.yml CHANGED
@@ -95,6 +95,11 @@ publish-node-sdk:
95
95
  rules:
96
96
  - if: '$CI_COMMIT_TAG'
97
97
  image: node:lts
98
+ id_tokens:
99
+ NPM_ID_TOKEN:
100
+ aud: "npm:registry.npmjs.org"
101
+ SIGSTORE_ID_TOKEN:
102
+ aud: sigstore
98
103
  before_script:
99
104
  - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
100
105
  script:
@@ -1,11 +1,25 @@
1
1
  export interface ServiceExecution {
2
+ /** Unique identifier of the service execution. */
2
3
  id?: string;
3
- status?: ServiceExecution.Status;
4
+ /** Timestamp when the service execution was created. */
4
5
  createdAt?: string;
6
+ /** Timestamp when the service execution started. */
5
7
  startedAt?: string;
8
+ /** Timestamp when the service execution ended. */
6
9
  endedAt?: string;
10
+ /** Status of the service execution. */
11
+ status?: ServiceExecution.Status;
12
+ /** Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service. */
13
+ type?: ServiceExecution.Type;
14
+ /** The ID of the service for which this service execution was created. */
15
+ serviceId?: string;
16
+ /** The ID of the service definition for which this service execution was created. */
17
+ serviceDefinitionId?: string;
18
+ /** The ID of the application for which this service execution was created. */
19
+ applicationId?: string;
7
20
  }
8
21
  export declare namespace ServiceExecution {
22
+ /** Status of the service execution. */
9
23
  const Status: {
10
24
  readonly Unknown: "UNKNOWN";
11
25
  readonly Pending: "PENDING";
@@ -15,4 +29,10 @@ export declare namespace ServiceExecution {
15
29
  readonly Failed: "FAILED";
16
30
  };
17
31
  type Status = (typeof Status)[keyof typeof Status];
32
+ /** Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service. */
33
+ const Type: {
34
+ readonly Managed: "MANAGED";
35
+ readonly Workflow: "WORKFLOW";
36
+ };
37
+ type Type = (typeof Type)[keyof typeof Type];
18
38
  }
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.ServiceExecution = void 0;
5
5
  var ServiceExecution;
6
6
  (function (ServiceExecution) {
7
+ /** Status of the service execution. */
7
8
  ServiceExecution.Status = {
8
9
  Unknown: "UNKNOWN",
9
10
  Pending: "PENDING",
@@ -12,4 +13,9 @@ var ServiceExecution;
12
13
  Cancelled: "CANCELLED",
13
14
  Failed: "FAILED",
14
15
  };
16
+ /** Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service. */
17
+ ServiceExecution.Type = {
18
+ Managed: "MANAGED",
19
+ Workflow: "WORKFLOW",
20
+ };
15
21
  })(ServiceExecution || (exports.ServiceExecution = ServiceExecution = {}));
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "organization": "planqk-service",
3
- "version": "0.86.2"
3
+ "version": "0.101.3"
4
4
  }
@@ -38,20 +38,49 @@ components:
38
38
  properties:
39
39
  id:
40
40
  type: string
41
+ format: uuid
42
+ description: Unique identifier of the service execution.
41
43
  examples: [ 87cb778e-ac43-11ec-b909-0242ac120002 ]
42
- status:
43
- type: string
44
- enum: [ UNKNOWN, PENDING, RUNNING, SUCCEEDED, CANCELLED, FAILED ]
45
- examples: [ SUCCEEDED ]
46
44
  createdAt:
47
45
  type: string
46
+ pattern: "^\\d{4}\\-\\d{2}\\-\\d{2}\\s{1}\\d{2}\\:\\d{2}\\:\\d{2}$"
47
+ description: Timestamp when the service execution was created.
48
48
  examples: [ "2022-01-01 22:38:08" ]
49
49
  startedAt:
50
50
  type: string
51
+ pattern: "^\\d{4}\\-\\d{2}\\-\\d{2}\\s{1}\\d{2}\\:\\d{2}\\:\\d{2}$"
52
+ description: Timestamp when the service execution started.
51
53
  examples: [ "2022-01-01 22:39:08" ]
52
54
  endedAt:
53
55
  type: string
56
+ pattern: "^\\d{4}\\-\\d{2}\\-\\d{2}\\s{1}\\d{2}\\:\\d{2}\\:\\d{2}$"
57
+ description: Timestamp when the service execution ended.
54
58
  examples: [ "2022-01-01 22:40:08" ]
59
+ status:
60
+ type: string
61
+ enum: [ UNKNOWN, PENDING, RUNNING, SUCCEEDED, CANCELLED, FAILED ]
62
+ description: Status of the service execution.
63
+ examples: [ SUCCEEDED ]
64
+ type:
65
+ type: string
66
+ enum: [ MANAGED, WORKFLOW ]
67
+ description: Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service.
68
+ examples: [ MANAGED ]
69
+ serviceId:
70
+ type: string
71
+ format: uuid
72
+ description: The ID of the service for which this service execution was created.
73
+ examples: [ 123e4567-e89b-12d3-a456-426614174000 ]
74
+ serviceDefinitionId:
75
+ type: string
76
+ format: uuid
77
+ description: The ID of the service definition for which this service execution was created.
78
+ examples: [ 123e4567-e89b-12d3-a456-426614174000 ]
79
+ applicationId:
80
+ type: string
81
+ format: uuid
82
+ description: The ID of the application for which this service execution was created.
83
+ examples: [ 123e4567-e89b-12d3-a456-426614174000 ]
55
84
  LogEntry:
56
85
  type: object
57
86
  properties:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planqk/planqk-service-sdk",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "description": "SDK to interact with PLANQK Managed Services.",
5
5
  "author": "Kipu Quantum GmbH",
6
6
  "contributors": [
@@ -1 +1 @@
1
- __version__ = "2.8.0"
1
+ __version__ = "2.10.0"
@@ -16,6 +16,7 @@ if typing.TYPE_CHECKING:
16
16
  ResultResponseLinks,
17
17
  ServiceExecution,
18
18
  ServiceExecutionStatus,
19
+ ServiceExecutionType,
19
20
  )
20
21
  from . import service_api
21
22
  from .client import AsyncPlanqkServiceApi, PlanqkServiceApi
@@ -33,6 +34,7 @@ _dynamic_imports: typing.Dict[str, str] = {
33
34
  "ResultResponseLinks": ".types",
34
35
  "ServiceExecution": ".types",
35
36
  "ServiceExecutionStatus": ".types",
37
+ "ServiceExecutionType": ".types",
36
38
  "service_api": ".service_api",
37
39
  }
38
40
 
@@ -71,5 +73,6 @@ __all__ = [
71
73
  "ResultResponseLinks",
72
74
  "ServiceExecution",
73
75
  "ServiceExecutionStatus",
76
+ "ServiceExecutionType",
74
77
  "service_api",
75
78
  ]
@@ -15,6 +15,7 @@ if typing.TYPE_CHECKING:
15
15
  from .result_response_links import ResultResponseLinks
16
16
  from .service_execution import ServiceExecution
17
17
  from .service_execution_status import ServiceExecutionStatus
18
+ from .service_execution_type import ServiceExecutionType
18
19
  _dynamic_imports: typing.Dict[str, str] = {
19
20
  "HalLink": ".hal_link",
20
21
  "LogEntry": ".log_entry",
@@ -25,6 +26,7 @@ _dynamic_imports: typing.Dict[str, str] = {
25
26
  "ResultResponseLinks": ".result_response_links",
26
27
  "ServiceExecution": ".service_execution",
27
28
  "ServiceExecutionStatus": ".service_execution_status",
29
+ "ServiceExecutionType": ".service_execution_type",
28
30
  }
29
31
 
30
32
 
@@ -59,4 +61,5 @@ __all__ = [
59
61
  "ResultResponseLinks",
60
62
  "ServiceExecution",
61
63
  "ServiceExecutionStatus",
64
+ "ServiceExecutionType",
62
65
  ]
@@ -8,14 +8,66 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
8
  from ..core.serialization import FieldMetadata
9
9
  from ..core.unchecked_base_model import UncheckedBaseModel
10
10
  from .service_execution_status import ServiceExecutionStatus
11
+ from .service_execution_type import ServiceExecutionType
11
12
 
12
13
 
13
14
  class ServiceExecution(UncheckedBaseModel):
14
- id: typing.Optional[str] = None
15
- status: typing.Optional[ServiceExecutionStatus] = None
16
- created_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="createdAt")] = None
17
- started_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="startedAt")] = None
18
- ended_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="endedAt")] = None
15
+ id: typing.Optional[str] = pydantic.Field(default=None)
16
+ """
17
+ Unique identifier of the service execution.
18
+ """
19
+
20
+ created_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="createdAt")] = pydantic.Field(
21
+ default=None
22
+ )
23
+ """
24
+ Timestamp when the service execution was created.
25
+ """
26
+
27
+ started_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="startedAt")] = pydantic.Field(
28
+ default=None
29
+ )
30
+ """
31
+ Timestamp when the service execution started.
32
+ """
33
+
34
+ ended_at: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="endedAt")] = pydantic.Field(
35
+ default=None
36
+ )
37
+ """
38
+ Timestamp when the service execution ended.
39
+ """
40
+
41
+ status: typing.Optional[ServiceExecutionStatus] = pydantic.Field(default=None)
42
+ """
43
+ Status of the service execution.
44
+ """
45
+
46
+ type: typing.Optional[ServiceExecutionType] = pydantic.Field(default=None)
47
+ """
48
+ Type identifier indicating whether the underlying service is a 'managed' or 'workflow' service.
49
+ """
50
+
51
+ service_id: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="serviceId")] = pydantic.Field(
52
+ default=None
53
+ )
54
+ """
55
+ The ID of the service for which this service execution was created.
56
+ """
57
+
58
+ service_definition_id: typing_extensions.Annotated[
59
+ typing.Optional[str], FieldMetadata(alias="serviceDefinitionId")
60
+ ] = pydantic.Field(default=None)
61
+ """
62
+ The ID of the service definition for which this service execution was created.
63
+ """
64
+
65
+ application_id: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="applicationId")] = (
66
+ pydantic.Field(default=None)
67
+ )
68
+ """
69
+ The ID of the application for which this service execution was created.
70
+ """
19
71
 
20
72
  if IS_PYDANTIC_V2:
21
73
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ ServiceExecutionType = typing.Union[typing.Literal["MANAGED", "WORKFLOW"], typing.Any]
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "planqk-service-sdk"
3
- version = "2.8.0"
3
+ version = "2.10.0"
4
4
  description = "SDK to interact with PLANQK Managed Services."
5
5
  authors = [
6
6
  { name = "Kipu Quantum GmbH", email = "info@kipu-quantum.com" },
@@ -12,10 +12,14 @@ appnope==0.1.4 ; sys_platform == 'darwin' \
12
12
  --hash=sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee \
13
13
  --hash=sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c
14
14
  # via ipykernel
15
- astroid==3.3.11 \
15
+ astroid==3.3.11 ; python_full_version < '3.10' \
16
16
  --hash=sha256:1e5a5011af2920c7c67a53f65d536d65bfa7116feeaf2354d8b94f29573bb0ce \
17
17
  --hash=sha256:54c760ae8322ece1abd213057c4b5bba7c49818853fc901ef09719a60dbf9dec
18
18
  # via pylint
19
+ astroid==4.0.1 ; python_full_version >= '3.10' \
20
+ --hash=sha256:0d778ec0def05b935e198412e62f9bcca8b3b5c39fdbe50b0ba074005e477aab \
21
+ --hash=sha256:37ab2f107d14dc173412327febf6c78d39590fdafcb44868f03b6c03452e3db0
22
+ # via pylint
19
23
  asttokens==3.0.0 \
20
24
  --hash=sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7 \
21
25
  --hash=sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2
@@ -129,61 +133,61 @@ comm==0.2.3 \
129
133
  --hash=sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971 \
130
134
  --hash=sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417
131
135
  # via ipykernel
132
- cryptography==46.0.2 \
133
- --hash=sha256:04911b149eae142ccd8c9a68892a70c21613864afb47aba92d8c7ed9cc001023 \
134
- --hash=sha256:07c0eb6657c0e9cca5891f4e35081dbf985c8131825e21d99b4f440a8f496f36 \
135
- --hash=sha256:0b507c8e033307e37af61cb9f7159b416173bdf5b41d11c4df2e499a1d8e007c \
136
- --hash=sha256:0c7ffe8c9b1fcbb07a26d7c9fa5e857c2fe80d72d7b9e0353dcf1d2180ae60ee \
137
- --hash=sha256:1a88634851d9b8de8bb53726f4300ab191d3b2f42595e2581a54b26aba71b7cc \
138
- --hash=sha256:1d3b3edd145953832e09607986f2bd86f85d1dc9c48ced41808b18009d9f30e5 \
139
- --hash=sha256:1e3b6428a3d56043bff0bb85b41c535734204e599c1c0977e1d0f261b02f3ad5 \
140
- --hash=sha256:1fd1a69086926b623ef8126b4c33d5399ce9e2f3fac07c9c734c2a4ec38b6d02 \
141
- --hash=sha256:218abd64a2e72f8472c2102febb596793347a3e65fafbb4ad50519969da44470 \
142
- --hash=sha256:21b6fc8c71a3f9a604f028a329e5560009cc4a3a828bfea5fcba8eb7647d88fe \
143
- --hash=sha256:27c53b4f6a682a1b645fbf1cd5058c72cf2f5aeba7d74314c36838c7cbc06e0f \
144
- --hash=sha256:2b9cad9cf71d0c45566624ff76654e9bae5f8a25970c250a26ccfc73f8553e2d \
145
- --hash=sha256:2fafb6aa24e702bbf74de4cb23bfa2c3beb7ab7683a299062b69724c92e0fa73 \
146
- --hash=sha256:3f37aa12b2d91e157827d90ce78f6180f0c02319468a0aea86ab5a9566da644b \
147
- --hash=sha256:48b983089378f50cba258f7f7aa28198c3f6e13e607eaf10472c26320332ca9a \
148
- --hash=sha256:48c01988ecbb32979bb98731f5c2b2f79042a6c58cc9a319c8c2f9987c7f68f9 \
149
- --hash=sha256:4a766d2a5d8127364fd936572c6e6757682fc5dfcbdba1632d4554943199f2fa \
150
- --hash=sha256:512c0250065e0a6b286b2db4bbcc2e67d810acd53eb81733e71314340366279e \
151
- --hash=sha256:5840f05518caa86b09d23f8b9405a7b6d5400085aa14a72a98fdf5cf1568c0d2 \
152
- --hash=sha256:5e38f203160a48b93010b07493c15f2babb4e0f2319bbd001885adb3f3696d21 \
153
- --hash=sha256:6b275e398ab3a7905e168c036aad54b5969d63d3d9099a0a66cc147a3cc983be \
154
- --hash=sha256:7282d8f092b5be7172d6472f29b0631f39f18512a3642aefe52c3c0e0ccfad5a \
155
- --hash=sha256:747b6f4a4a23d5a215aadd1d0b12233b4119c4313df83ab4137631d43672cc90 \
156
- --hash=sha256:758cfc7f4c38c5c5274b55a57ef1910107436f4ae842478c4989abbd24bd5acb \
157
- --hash=sha256:8b16c1ede6a937c291d41176934268e4ccac2c6521c69d3f5961c5a1e11e039e \
158
- --hash=sha256:8b9bf67b11ef9e28f4d78ff88b04ed0929fcd0e4f70bb0f704cfc32a5c6311ee \
159
- --hash=sha256:8e2ad4d1a5899b7caa3a450e33ee2734be7cc0689010964703a7c4bcc8dd4fd0 \
160
- --hash=sha256:9066cfd7f146f291869a9898b01df1c9b0e314bfa182cef432043f13fc462c92 \
161
- --hash=sha256:91447f2b17e83c9e0c89f133119d83f94ce6e0fb55dd47da0a959316e6e9cfa1 \
162
- --hash=sha256:97e83bf4f2f2c084d8dd792d13841d0a9b241643151686010866bbd076b19659 \
163
- --hash=sha256:9bd26f2f75a925fdf5e0a446c0de2714f17819bf560b44b7480e4dd632ad6c46 \
164
- --hash=sha256:9bdc25e4e01b261a8fda4e98618f1c9515febcecebc9566ddf4a70c63967043b \
165
- --hash=sha256:9ec3f2e2173f36a9679d3b06d3d01121ab9b57c979de1e6a244b98d51fea1b20 \
166
- --hash=sha256:9f13b040649bc18e7eb37936009b24fd31ca095a5c647be8bb6aaf1761142bd1 \
167
- --hash=sha256:a08e7401a94c002e79dc3bc5231b6558cd4b2280ee525c4673f650a37e2c7685 \
168
- --hash=sha256:a61c154cc5488272a6c4b86e8d5beff4639cdb173d75325ce464d723cda0052b \
169
- --hash=sha256:bb7fb9cd44c2582aa5990cf61a4183e6f54eea3172e54963787ba47287edd135 \
170
- --hash=sha256:bca3f0ce67e5a2a2cf524e86f44697c4323a86e0fd7ba857de1c30d52c11ede1 \
171
- --hash=sha256:bda55e8dbe8533937956c996beaa20266a8eca3570402e52ae52ed60de1faca8 \
172
- --hash=sha256:be939b99d4e091eec9a2bcf41aaf8f351f312cd19ff74b5c83480f08a8a43e0b \
173
- --hash=sha256:c4b93af7920cdf80f71650769464ccf1fb49a4b56ae0024173c24c48eb6b1612 \
174
- --hash=sha256:cb5e8daac840e8879407acbe689a174f5ebaf344a062f8918e526824eb5d97af \
175
- --hash=sha256:d19f5f48883752b5ab34cff9e2f7e4a7f216296f33714e77d1beb03d108632b6 \
176
- --hash=sha256:d30bc11d35743bf4ddf76674a0a369ec8a21f87aaa09b0661b04c5f6c46e8d7b \
177
- --hash=sha256:e12b61e0b86611e3f4c1756686d9086c1d36e6fd15326f5658112ad1f1cc8807 \
178
- --hash=sha256:e6f6775eaaa08c0eec73e301f7592f4367ccde5e4e4df8e58320f2ebf161ea2c \
179
- --hash=sha256:e7155c0b004e936d381b15425273aee1cebc94f879c0ce82b0d7fecbf755d53a \
180
- --hash=sha256:e8633996579961f9b5a3008683344c2558d38420029d3c0bc7ff77c17949a4e1 \
181
- --hash=sha256:f25a41f5b34b371a06dad3f01799706631331adc7d6c05253f5bca22068c7a34 \
182
- --hash=sha256:f3e32ab7dd1b1ef67b9232c4cf5e2ee4cd517d4316ea910acaaa9c5712a1c663 \
183
- --hash=sha256:f9b2dc7668418fb6f221e4bf701f716e05e8eadb4f1988a2487b11aedf8abe62 \
184
- --hash=sha256:fab8f805e9675e61ed8538f192aad70500fa6afb33a8803932999b1049363a08 \
185
- --hash=sha256:fe245cf4a73c20592f0f48da39748b3513db114465be78f0a36da847221bd1b4 \
186
- --hash=sha256:ff798ad7a957a5021dcbab78dfff681f0cf15744d0e6af62bd6746984d9c9e9c
136
+ cryptography==46.0.3 \
137
+ --hash=sha256:00a5e7e87938e5ff9ff5447ab086a5706a957137e6e433841e9d24f38a065217 \
138
+ --hash=sha256:01ca9ff2885f3acc98c29f1860552e37f6d7c7d013d7334ff2a9de43a449315d \
139
+ --hash=sha256:09859af8466b69bc3c27bdf4f5d84a665e0f7ab5088412e9e2ec49758eca5cbc \
140
+ --hash=sha256:0abf1ffd6e57c67e92af68330d05760b7b7efb243aab8377e583284dbab72c71 \
141
+ --hash=sha256:1000713389b75c449a6e979ffc7dcc8ac90b437048766cef052d4d30b8220971 \
142
+ --hash=sha256:109d4ddfadf17e8e7779c39f9b18111a09efb969a301a31e987416a0191ed93a \
143
+ --hash=sha256:10b01676fc208c3e6feeb25a8b83d81767e8059e1fe86e1dc62d10a3018fa926 \
144
+ --hash=sha256:10ca84c4668d066a9878890047f03546f3ae0a6b8b39b697457b7757aaf18dbc \
145
+ --hash=sha256:15ab9b093e8f09daab0f2159bb7e47532596075139dd74365da52ecc9cb46c5d \
146
+ --hash=sha256:191bb60a7be5e6f54e30ba16fdfae78ad3a342a0599eb4193ba88e3f3d6e185b \
147
+ --hash=sha256:22d7e97932f511d6b0b04f2bfd818d73dcd5928db509460aaf48384778eb6d20 \
148
+ --hash=sha256:23b1a8f26e43f47ceb6d6a43115f33a5a37d57df4ea0ca295b780ae8546e8044 \
149
+ --hash=sha256:36e627112085bb3b81b19fed209c05ce2a52ee8b15d161b7c643a7d5a88491f3 \
150
+ --hash=sha256:39b6755623145ad5eff1dab323f4eae2a32a77a7abef2c5089a04a3d04366715 \
151
+ --hash=sha256:3b51b8ca4f1c6453d8829e1eb7299499ca7f313900dd4d89a24b8b87c0a780d4 \
152
+ --hash=sha256:402b58fc32614f00980b66d6e56a5b4118e6cb362ae8f3fda141ba4689bd4506 \
153
+ --hash=sha256:416260257577718c05135c55958b674000baef9a1c7d9e8f306ec60d71db850f \
154
+ --hash=sha256:46acf53b40ea38f9c6c229599a4a13f0d46a6c3fa9ef19fc1a124d62e338dfa0 \
155
+ --hash=sha256:4b7387121ac7d15e550f5cb4a43aef2559ed759c35df7336c402bb8275ac9683 \
156
+ --hash=sha256:50fc3343ac490c6b08c0cf0d704e881d0d660be923fd3076db3e932007e726e3 \
157
+ --hash=sha256:516ea134e703e9fe26bcd1277a4b59ad30586ea90c365a87781d7887a646fe21 \
158
+ --hash=sha256:549e234ff32571b1f4076ac269fcce7a808d3bf98b76c8dd560e42dbc66d7d91 \
159
+ --hash=sha256:5d7f93296ee28f68447397bf5198428c9aeeab45705a55d53a6343455dcb2c3c \
160
+ --hash=sha256:5ecfccd2329e37e9b7112a888e76d9feca2347f12f37918facbb893d7bb88ee8 \
161
+ --hash=sha256:6276eb85ef938dc035d59b87c8a7dc559a232f954962520137529d77b18ff1df \
162
+ --hash=sha256:6b5063083824e5509fdba180721d55909ffacccc8adbec85268b48439423d78c \
163
+ --hash=sha256:6eae65d4c3d33da080cff9c4ab1f711b15c1d9760809dad6ea763f3812d254cb \
164
+ --hash=sha256:6f61efb26e76c45c4a227835ddeae96d83624fb0d29eb5df5b96e14ed1a0afb7 \
165
+ --hash=sha256:71e842ec9bc7abf543b47cf86b9a743baa95f4677d22baa4c7d5c69e49e9bc04 \
166
+ --hash=sha256:760f83faa07f8b64e9c33fc963d790a2edb24efb479e3520c14a45741cd9b2db \
167
+ --hash=sha256:78a97cf6a8839a48c49271cdcbd5cf37ca2c1d6b7fdd86cc864f302b5e9bf459 \
168
+ --hash=sha256:7ce938a99998ed3c8aa7e7272dca1a610401ede816d36d0693907d863b10d9ea \
169
+ --hash=sha256:8a6e050cb6164d3f830453754094c086ff2d0b2f3a897a1d9820f6139a1f0914 \
170
+ --hash=sha256:9394673a9f4de09e28b5356e7fff97d778f8abad85c9d5ac4a4b7e25a0de7717 \
171
+ --hash=sha256:94cd0549accc38d1494e1f8de71eca837d0509d0d44bf11d158524b0e12cebf9 \
172
+ --hash=sha256:a04bee9ab6a4da801eb9b51f1b708a1b5b5c9eb48c03f74198464c66f0d344ac \
173
+ --hash=sha256:a23582810fedb8c0bc47524558fb6c56aac3fc252cb306072fd2815da2a47c32 \
174
+ --hash=sha256:a2c0cd47381a3229c403062f764160d57d4d175e022c1df84e168c6251a22eec \
175
+ --hash=sha256:a8b17438104fed022ce745b362294d9ce35b4c2e45c1d958ad4a4b019285f4a1 \
176
+ --hash=sha256:a9a3008438615669153eb86b26b61e09993921ebdd75385ddd748702c5adfddb \
177
+ --hash=sha256:b02cf04496f6576afffef5ddd04a0cb7d49cf6be16a9059d793a30b035f6b6ac \
178
+ --hash=sha256:b419ae593c86b87014b9be7396b385491ad7f320bde96826d0dd174459e54665 \
179
+ --hash=sha256:c0a7bb1a68a5d3471880e264621346c48665b3bf1c3759d682fc0864c540bd9e \
180
+ --hash=sha256:c70cc23f12726be8f8bc72e41d5065d77e4515efae3690326764ea1b07845cfb \
181
+ --hash=sha256:c8daeb2d2174beb4575b77482320303f3d39b8e81153da4f0fb08eb5fe86a6c5 \
182
+ --hash=sha256:cb3d760a6117f621261d662bccc8ef5bc32ca673e037c83fbe565324f5c46936 \
183
+ --hash=sha256:d55f3dffadd674514ad19451161118fd010988540cee43d8bc20675e775925de \
184
+ --hash=sha256:d89c3468de4cdc4f08a57e214384d0471911a3830fcdaf7a8cc587e42a866372 \
185
+ --hash=sha256:db391fa7c66df6762ee3f00c95a89e6d428f4d60e7abc8328f4fe155b5ac6e54 \
186
+ --hash=sha256:dfb781ff7eaa91a6f7fd41776ec37c5853c795d3b358d4896fdbb5df168af422 \
187
+ --hash=sha256:e5bf0ed4490068a2e72ac03d786693adeb909981cc596425d09032d372bcc849 \
188
+ --hash=sha256:e7aec276d68421f9574040c26e2a7c3771060bc0cff408bae1dcb19d3ab1e63c \
189
+ --hash=sha256:ef639cb3372f69ec44915fafcd6698b6cc78fbe0c2ea41be867f6ed612811963 \
190
+ --hash=sha256:f260d0d41e9b4da1ed1e0f1ce571f97fe370b152ab18778e9e8f67d6af432018
187
191
  # via authlib
188
192
  debugpy==1.8.17 \
189
193
  --hash=sha256:045290c010bcd2d82bc97aa2daf6837443cd52f6328592698809b4549babcee1 \
@@ -244,9 +248,9 @@ httpx==0.28.1 \
244
248
  --hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \
245
249
  --hash=sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad
246
250
  # via planqk-service-sdk
247
- idna==3.10 \
248
- --hash=sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9 \
249
- --hash=sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3
251
+ idna==3.11 \
252
+ --hash=sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea \
253
+ --hash=sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902
250
254
  # via
251
255
  # anyio
252
256
  # httpx
@@ -256,13 +260,20 @@ importlib-metadata==8.7.0 ; python_full_version < '3.10' \
256
260
  # via
257
261
  # isort
258
262
  # jupyter-client
259
- iniconfig==2.1.0 \
263
+ iniconfig==2.1.0 ; python_full_version < '3.10' \
260
264
  --hash=sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7 \
261
265
  --hash=sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760
262
266
  # via pytest
263
- ipykernel==6.30.1 \
264
- --hash=sha256:6abb270161896402e76b91394fcdce5d1be5d45f456671e5080572f8505be39b \
265
- --hash=sha256:aa6b9fb93dca949069d8b85b6c79b2518e32ac583ae9c7d37c51d119e18b3fb4
267
+ iniconfig==2.3.0 ; python_full_version >= '3.10' \
268
+ --hash=sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730 \
269
+ --hash=sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12
270
+ # via pytest
271
+ ipykernel==6.31.0 ; python_full_version < '3.10' \
272
+ --hash=sha256:2372ce8bc1ff4f34e58cafed3a0feb2194b91fc7cad0fc72e79e47b45ee9e8f6 \
273
+ --hash=sha256:abe5386f6ced727a70e0eb0cf1da801fa7c5fa6ff82147747d5a0406cd8c94af
274
+ ipykernel==7.1.0 ; python_full_version >= '3.10' \
275
+ --hash=sha256:58a3fc88533d5930c3546dc7eac66c6d288acde4f801e2001e65edc5dc9cf0db \
276
+ --hash=sha256:763b5ec6c5b7776f6a8d7ce09b267693b4e5ce75cb50ae696aaefb3c85e1ea4c
266
277
  ipython==8.18.1 ; python_full_version < '3.10' \
267
278
  --hash=sha256:ca6f079bb33457c66e233e4580ebfc4128855b4cf6370dddd73842a9563e8a27 \
268
279
  --hash=sha256:e8267419d72d81955ec1177f8a29aaa90ac80ad647499201119e2f05e99aa397
@@ -279,10 +290,14 @@ ipython-pygments-lexers==1.1.1 ; python_full_version >= '3.11' \
279
290
  --hash=sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81 \
280
291
  --hash=sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c
281
292
  # via ipython
282
- isort==6.1.0 \
293
+ isort==6.1.0 ; python_full_version < '3.10' \
283
294
  --hash=sha256:58d8927ecce74e5087aef019f778d4081a3b6c98f15a80ba35782ca8a2097784 \
284
295
  --hash=sha256:9b8f96a14cfee0677e78e941ff62f03769a06d412aabb9e2a90487b3b7e8d481
285
296
  # via pylint
297
+ isort==7.0.0 ; python_full_version >= '3.10' \
298
+ --hash=sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1 \
299
+ --hash=sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187
300
+ # via pylint
286
301
  jedi==0.19.2 \
287
302
  --hash=sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0 \
288
303
  --hash=sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9
@@ -291,15 +306,21 @@ jupyter-client==8.6.3 \
291
306
  --hash=sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419 \
292
307
  --hash=sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f
293
308
  # via ipykernel
294
- jupyter-core==5.8.1 \
309
+ jupyter-core==5.8.1 ; python_full_version < '3.10' \
295
310
  --hash=sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941 \
296
311
  --hash=sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0
297
312
  # via
298
313
  # ipykernel
299
314
  # jupyter-client
300
- matplotlib-inline==0.1.7 \
301
- --hash=sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90 \
302
- --hash=sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca
315
+ jupyter-core==5.9.1 ; python_full_version >= '3.10' \
316
+ --hash=sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508 \
317
+ --hash=sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407
318
+ # via
319
+ # ipykernel
320
+ # jupyter-client
321
+ matplotlib-inline==0.2.1 \
322
+ --hash=sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76 \
323
+ --hash=sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe
303
324
  # via
304
325
  # ipykernel
305
326
  # ipython
@@ -345,16 +366,26 @@ prompt-toolkit==3.0.52 \
345
366
  --hash=sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855 \
346
367
  --hash=sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955
347
368
  # via ipython
348
- psutil==7.1.0 \
349
- --hash=sha256:09ad740870c8d219ed8daae0ad3b726d3bf9a028a198e7f3080f6a1888b99bca \
350
- --hash=sha256:22e4454970b32472ce7deaa45d045b34d3648ce478e26a04c7e858a0a6e75ff3 \
351
- --hash=sha256:57f5e987c36d3146c0dd2528cd42151cf96cd359b9d67cfff836995cc5df9a3d \
352
- --hash=sha256:5d007560c8c372efdff9e4579c2846d71de737e4605f611437255e81efcca2c5 \
353
- --hash=sha256:655708b3c069387c8b77b072fc429a57d0e214221d01c0a772df7dfedcb3bcd2 \
354
- --hash=sha256:6937cb68133e7c97b6cc9649a570c9a18ba0efebed46d8c5dae4c07fa1b67a07 \
355
- --hash=sha256:76168cef4397494250e9f4e73eb3752b146de1dd950040b29186d0cce1d5ca13 \
356
- --hash=sha256:7d4a113425c037300de3ac8b331637293da9be9713855c4fc9d2d97436d7259d \
357
- --hash=sha256:8c70e113920d51e89f212dd7be06219a9b88014e63a4cec69b684c327bc474e3
369
+ psutil==7.1.2 \
370
+ --hash=sha256:0cc5c6889b9871f231ed5455a9a02149e388fffcb30b607fb7a8896a6d95f22e \
371
+ --hash=sha256:20c00824048a95de67f00afedc7b08b282aa08638585b0206a9fb51f28f1a165 \
372
+ --hash=sha256:2a486030d2fe81bec023f703d3d155f4823a10a47c36784c84f1cc7f8d39bedb \
373
+ --hash=sha256:329f05610da6380982e6078b9d0881d9ab1e9a7eb7c02d833bfb7340aa634e31 \
374
+ --hash=sha256:364b1c10fe4ed59c89ec49e5f1a70da353b27986fa8233b4b999df4742a5ee2f \
375
+ --hash=sha256:3e988455e61c240cc879cb62a008c2699231bf3e3d061d7fce4234463fd2abb4 \
376
+ --hash=sha256:3efd8fc791492e7808a51cb2b94889db7578bfaea22df931424f874468e389e3 \
377
+ --hash=sha256:4a24bcd7b7f2918d934af0fb91859f621b873d6aa81267575e3655cd387572a7 \
378
+ --hash=sha256:625977443498ee7d6c1e63e93bacca893fd759a66c5f635d05e05811d23fb5ee \
379
+ --hash=sha256:7b04c29e3c0c888e83ed4762b70f31e65c42673ea956cefa8ced0e31e185f582 \
380
+ --hash=sha256:7d9623a5e4164d2220ecceb071f4b333b3c78866141e8887c072129185f41278 \
381
+ --hash=sha256:8e17852114c4e7996fe9da4745c2bdef001ebbf2f260dec406290e66628bdb91 \
382
+ --hash=sha256:8e9e77a977208d84aa363a4a12e0f72189d58bbf4e46b49aae29a2c6e93ef206 \
383
+ --hash=sha256:aa225cdde1335ff9684708ee8c72650f6598d5ed2114b9a7c5802030b1785018 \
384
+ --hash=sha256:c9ba5c19f2d46203ee8c152c7b01df6eec87d883cfd8ee1af2ef2727f6b0f814 \
385
+ --hash=sha256:e09cfe92aa8e22b1ec5e2d394820cf86c5dff6367ac3242366485dfa874d43bc \
386
+ --hash=sha256:e2aeb9b64f481b8eabfc633bd39e0016d4d8bbcd590d984af764d80bf0851b8a \
387
+ --hash=sha256:f101ef84de7e05d41310e3ccbdd65a6dd1d9eed85e8aaf0758405d022308e204 \
388
+ --hash=sha256:fa6342cf859c48b19df3e4aa170e4cfb64aadc50b11e06bb569c6c777b089c9e
358
389
  # via ipykernel
359
390
  ptyprocess==0.7.0 ; (python_full_version < '3.10' and sys_platform == 'emscripten') or (sys_platform != 'emscripten' and sys_platform != 'win32') \
360
391
  --hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \
@@ -458,9 +489,12 @@ pygments==2.19.2 \
458
489
  # ipython
459
490
  # ipython-pygments-lexers
460
491
  # pytest
461
- pylint==3.3.9 \
492
+ pylint==3.3.9 ; python_full_version < '3.10' \
462
493
  --hash=sha256:01f9b0462c7730f94786c283f3e52a1fbdf0494bbe0971a78d7277ef46a751e7 \
463
494
  --hash=sha256:d312737d7b25ccf6b01cc4ac629b5dcd14a0fcf3ec392735ac70f137a9d5f83a
495
+ pylint==4.0.2 ; python_full_version >= '3.10' \
496
+ --hash=sha256:9627ccd129893fb8ee8e8010261cb13485daca83e61a6f854a85528ee579502d \
497
+ --hash=sha256:9c22dfa52781d3b79ce86ab2463940f874921a3e5707bcfc98dd0c019945014e
464
498
  pytest==8.4.2 \
465
499
  --hash=sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01 \
466
500
  --hash=sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79
@@ -472,11 +506,11 @@ python-dateutil==2.9.0.post0 \
472
506
  --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \
473
507
  --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427
474
508
  # via jupyter-client
475
- python-dotenv==1.1.1 \
476
- --hash=sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc \
477
- --hash=sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab
509
+ python-dotenv==1.2.1 \
510
+ --hash=sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6 \
511
+ --hash=sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61
478
512
  # via pytest-dotenv
479
- pywin32==311 ; platform_python_implementation != 'PyPy' and sys_platform == 'win32' \
513
+ pywin32==311 ; python_full_version < '3.10' and platform_python_implementation != 'PyPy' and sys_platform == 'win32' \
480
514
  --hash=sha256:0502d1facf1fed4839a9a51ccbcc63d952cf318f78ffc00a7e78528ac27d7a2b \
481
515
  --hash=sha256:184eb5e436dea364dcd3d2316d577d625c0351bf237c4e9a5fabbcfa5a58b151 \
482
516
  --hash=sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87 \