@planqk/planqk-service-sdk 2.10.0 → 2.11.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/.env.template +2 -2
- package/dist/auth.d.ts +1 -1
- package/dist/auth.js +5 -1
- package/dist/sdk/environments.d.ts +1 -1
- package/dist/sdk/environments.js +1 -1
- package/fern/openapi/openapi.yml +2 -2
- package/notebooks/python-sdk.ipynb +3 -3
- package/package.json +2 -1
- package/planqk/service/_version.py +1 -1
- package/planqk/service/auth.py +1 -1
- package/planqk/service/sdk/environment.py +1 -1
- package/pyproject.toml +1 -1
- package/requirements-dev.txt +105 -99
- package/requirements.txt +12 -16
- package/src/auth.ts +5 -1
- package/src/sdk/environments.ts +1 -1
- package/uv.lock +176 -132
package/.env.template
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
TOKEN_ENDPOINT=https://gateway.
|
|
2
|
-
SERVICE_ENDPOINT=https://gateway.
|
|
1
|
+
TOKEN_ENDPOINT=https://gateway.hub.kipu-quantum.com/token
|
|
2
|
+
SERVICE_ENDPOINT=https://gateway.hub.kipu-quantum.com/your-organization/your-service/1.0.0
|
|
3
3
|
CONSUMER_KEY=your-consumer-key
|
|
4
4
|
CONSUMER_SECRET=your-consumer-secret
|
package/dist/auth.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const DEFAULT_TOKEN_ENDPOINT = "https://gateway.
|
|
1
|
+
export declare const DEFAULT_TOKEN_ENDPOINT = "https://gateway.hub.kipu-quantum.com/token";
|
|
2
2
|
export declare class PlanqkServiceAuth {
|
|
3
3
|
private accessToken;
|
|
4
4
|
private readonly consumerKey;
|
package/dist/auth.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PlanqkServiceAuth = exports.DEFAULT_TOKEN_ENDPOINT = void 0;
|
|
4
4
|
const simple_oauth2_1 = require("simple-oauth2");
|
|
5
|
-
exports.DEFAULT_TOKEN_ENDPOINT = 'https://gateway.
|
|
5
|
+
exports.DEFAULT_TOKEN_ENDPOINT = 'https://gateway.hub.kipu-quantum.com/token';
|
|
6
6
|
class PlanqkServiceAuth {
|
|
7
7
|
accessToken;
|
|
8
8
|
consumerKey;
|
|
@@ -32,6 +32,10 @@ class PlanqkServiceAuth {
|
|
|
32
32
|
id: this.consumerKey,
|
|
33
33
|
secret: this.consumerSecret,
|
|
34
34
|
},
|
|
35
|
+
options: {
|
|
36
|
+
authorizationMethod: 'body',
|
|
37
|
+
bodyFormat: 'form'
|
|
38
|
+
}
|
|
35
39
|
});
|
|
36
40
|
return client.getToken({});
|
|
37
41
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PlanqkServiceApiEnvironment: {
|
|
2
|
-
readonly Default: "https://gateway.
|
|
2
|
+
readonly Default: "https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>";
|
|
3
3
|
};
|
|
4
4
|
export type PlanqkServiceApiEnvironment = typeof PlanqkServiceApiEnvironment.Default;
|
package/dist/sdk/environments.js
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.PlanqkServiceApiEnvironment = void 0;
|
|
5
5
|
exports.PlanqkServiceApiEnvironment = {
|
|
6
|
-
Default: "https://gateway.
|
|
6
|
+
Default: "https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>",
|
|
7
7
|
};
|
package/fern/openapi/openapi.yml
CHANGED
|
@@ -136,12 +136,12 @@ components:
|
|
|
136
136
|
type: oauth2
|
|
137
137
|
flows:
|
|
138
138
|
clientCredentials:
|
|
139
|
-
tokenUrl: https://gateway.
|
|
139
|
+
tokenUrl: https://gateway.hub.kipu-quantum.com/token
|
|
140
140
|
scopes: { }
|
|
141
141
|
security:
|
|
142
142
|
- ApplicationCredentials: [ ]
|
|
143
143
|
servers:
|
|
144
|
-
- url: https://gateway.
|
|
144
|
+
- url: https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>
|
|
145
145
|
description: The service endpoint
|
|
146
146
|
paths:
|
|
147
147
|
/:
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"\n",
|
|
27
27
|
"load_dotenv(override=True)\n",
|
|
28
28
|
"\n",
|
|
29
|
-
"token_endpoint = os.getenv(\"TOKEN_ENDPOINT\",
|
|
30
|
-
"service_endpoint = os.getenv(\"SERVICE_ENDPOINT\",
|
|
29
|
+
"token_endpoint = os.getenv(\"TOKEN_ENDPOINT\", \"https://gateway.hub.kipu-quantum.com/token\")\n",
|
|
30
|
+
"service_endpoint = os.getenv(\"SERVICE_ENDPOINT\", \"https://gateway.hub.kipu-quantum.com/your-organization/your-service/1.0.0\")\n",
|
|
31
31
|
"consumer_key = os.getenv(\"CONSUMER_KEY\", None)\n",
|
|
32
32
|
"consumer_secret = os.getenv(\"CONSUMER_SECRET\", None)\n",
|
|
33
33
|
"\n",
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"name": "python",
|
|
221
221
|
"nbconvert_exporter": "python",
|
|
222
222
|
"pygments_lexer": "ipython3",
|
|
223
|
-
"version": "3.11.
|
|
223
|
+
"version": "3.11.13"
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
"nbformat": 4,
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planqk/planqk-service-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "SDK to interact with PLANQK Managed Services.",
|
|
5
5
|
"author": "Kipu Quantum GmbH",
|
|
6
6
|
"contributors": [
|
|
7
|
+
"Harzenetter, Lukas <lukas.harzenetter@kipu-quantum.com>",
|
|
7
8
|
"Wurster, Michael <michael.wurster@kipu-quantum.com>"
|
|
8
9
|
],
|
|
9
10
|
"license": "Apache-2.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2.
|
|
1
|
+
__version__ = "2.11.0"
|
package/planqk/service/auth.py
CHANGED
package/pyproject.toml
CHANGED
package/requirements-dev.txt
CHANGED
|
@@ -4,9 +4,9 @@ annotated-types==0.7.0 \
|
|
|
4
4
|
--hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \
|
|
5
5
|
--hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89
|
|
6
6
|
# via pydantic
|
|
7
|
-
anyio==4.
|
|
8
|
-
--hash=sha256:
|
|
9
|
-
--hash=sha256:
|
|
7
|
+
anyio==4.12.1 \
|
|
8
|
+
--hash=sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703 \
|
|
9
|
+
--hash=sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c
|
|
10
10
|
# via httpx
|
|
11
11
|
appnope==0.1.4 ; sys_platform == 'darwin' \
|
|
12
12
|
--hash=sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee \
|
|
@@ -16,21 +16,21 @@ 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.
|
|
20
|
-
--hash=sha256:
|
|
21
|
-
--hash=sha256:
|
|
19
|
+
astroid==4.0.3 ; python_full_version >= '3.10' \
|
|
20
|
+
--hash=sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3 \
|
|
21
|
+
--hash=sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14
|
|
22
22
|
# via pylint
|
|
23
|
-
asttokens==3.0.
|
|
24
|
-
--hash=sha256:
|
|
25
|
-
--hash=sha256:
|
|
23
|
+
asttokens==3.0.1 \
|
|
24
|
+
--hash=sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a \
|
|
25
|
+
--hash=sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7
|
|
26
26
|
# via stack-data
|
|
27
|
-
authlib==1.6.
|
|
28
|
-
--hash=sha256:
|
|
29
|
-
--hash=sha256:
|
|
27
|
+
authlib==1.6.6 \
|
|
28
|
+
--hash=sha256:45770e8e056d0f283451d9996fbb59b70d45722b45d854d58f32878d0a40c38e \
|
|
29
|
+
--hash=sha256:7d9e9bc535c13974313a87f53e8430eb6ea3d1cf6ae4f6efcd793f2e949143fd
|
|
30
30
|
# via planqk-service-sdk
|
|
31
|
-
certifi==
|
|
32
|
-
--hash=sha256:
|
|
33
|
-
--hash=sha256:
|
|
31
|
+
certifi==2026.1.4 \
|
|
32
|
+
--hash=sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c \
|
|
33
|
+
--hash=sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120
|
|
34
34
|
# via
|
|
35
35
|
# httpcore
|
|
36
36
|
# httpx
|
|
@@ -189,33 +189,33 @@ cryptography==46.0.3 \
|
|
|
189
189
|
--hash=sha256:ef639cb3372f69ec44915fafcd6698b6cc78fbe0c2ea41be867f6ed612811963 \
|
|
190
190
|
--hash=sha256:f260d0d41e9b4da1ed1e0f1ce571f97fe370b152ab18778e9e8f67d6af432018
|
|
191
191
|
# via authlib
|
|
192
|
-
debugpy==1.8.
|
|
193
|
-
--hash=sha256:
|
|
194
|
-
--hash=sha256:
|
|
195
|
-
--hash=sha256:
|
|
196
|
-
--hash=sha256:
|
|
197
|
-
--hash=sha256:
|
|
198
|
-
--hash=sha256:
|
|
199
|
-
--hash=sha256:
|
|
200
|
-
--hash=sha256:
|
|
201
|
-
--hash=sha256:
|
|
202
|
-
--hash=sha256:
|
|
203
|
-
--hash=sha256:
|
|
204
|
-
--hash=sha256:
|
|
205
|
-
--hash=sha256:
|
|
206
|
-
--hash=sha256:
|
|
207
|
-
--hash=sha256:
|
|
208
|
-
--hash=sha256:
|
|
209
|
-
--hash=sha256:
|
|
210
|
-
--hash=sha256:
|
|
211
|
-
--hash=sha256:
|
|
212
|
-
--hash=sha256:
|
|
213
|
-
--hash=sha256:
|
|
214
|
-
--hash=sha256:
|
|
215
|
-
--hash=sha256:
|
|
216
|
-
--hash=sha256:
|
|
217
|
-
--hash=sha256:
|
|
218
|
-
--hash=sha256:
|
|
192
|
+
debugpy==1.8.19 \
|
|
193
|
+
--hash=sha256:0601708223fe1cd0e27c6cce67a899d92c7d68e73690211e6788a4b0e1903f5b \
|
|
194
|
+
--hash=sha256:14035cbdbb1fe4b642babcdcb5935c2da3b1067ac211c5c5a8fdc0bb31adbcaa \
|
|
195
|
+
--hash=sha256:1e8c4d1bd230067bf1bbcdbd6032e5a57068638eb28b9153d008ecde288152af \
|
|
196
|
+
--hash=sha256:327cb28c3ad9e17bc925efc7f7018195fd4787c2fe4b7af1eec11f1d19bdec62 \
|
|
197
|
+
--hash=sha256:360ffd231a780abbc414ba0f005dad409e71c78637efe8f2bd75837132a41d38 \
|
|
198
|
+
--hash=sha256:4468de0c30012d367944f0eab4ecb8371736e8ef9522a465f61214f344c11183 \
|
|
199
|
+
--hash=sha256:6599cab8a783d1496ae9984c52cb13b7c4a3bd06a8e6c33446832a5d97ce0bee \
|
|
200
|
+
--hash=sha256:66e3d2fd8f2035a8f111eb127fa508469dfa40928a89b460b41fd988684dc83d \
|
|
201
|
+
--hash=sha256:76f566baaf7f3e06adbe67ffedccd2ee911d1e486f55931939ce3f0fe1090774 \
|
|
202
|
+
--hash=sha256:783a519e6dfb1f3cd773a9bda592f4887a65040cb0c7bd38dde410f4e53c40d4 \
|
|
203
|
+
--hash=sha256:7b62c0f015120ede25e5124a5f9d8a424e1208e3d96a36c89958f046ee21fff6 \
|
|
204
|
+
--hash=sha256:806d6800246244004625d5222d7765874ab2d22f3ba5f615416cf1342d61c488 \
|
|
205
|
+
--hash=sha256:85016a73ab84dea1c1f1dcd88ec692993bcbe4532d1b49ecb5f3c688ae50c606 \
|
|
206
|
+
--hash=sha256:8e19a725f5d486f20e53a1dde2ab8bb2c9607c40c00a42ab646def962b41125f \
|
|
207
|
+
--hash=sha256:91e35db2672a0abaf325f4868fcac9c1674a0d9ad9bb8a8c849c03a5ebba3e6d \
|
|
208
|
+
--hash=sha256:b605f17e89ba0ecee994391194285fada89cee111cfcd29d6f2ee11cbdc40976 \
|
|
209
|
+
--hash=sha256:b7dd275cf2c99e53adb9654f5ae015f70415bbe2bacbe24cfee30d54b6aa03c5 \
|
|
210
|
+
--hash=sha256:bccb1540a49cde77edc7ce7d9d075c1dbeb2414751bc0048c7a11e1b597a4c2e \
|
|
211
|
+
--hash=sha256:c047177ab2d286451f242b855b650d313198c4a987140d4b35218b2855a64a4a \
|
|
212
|
+
--hash=sha256:c30639998a9f9cd9699b4b621942c0179a6527f083c72351f95c6ab1728d5b73 \
|
|
213
|
+
--hash=sha256:c5dcfa21de1f735a4f7ced4556339a109aa0f618d366ede9da0a3600f2516d8b \
|
|
214
|
+
--hash=sha256:d40c016c1f538dbf1762936e3aeb43a89b965069d9f60f9e39d35d9d25e6b809 \
|
|
215
|
+
--hash=sha256:e24b1652a1df1ab04d81e7ead446a91c226de704ff5dde6bd0a0dbaab07aa3f2 \
|
|
216
|
+
--hash=sha256:e9c68d9a382ec754dc05ed1d1b4ed5bd824b9f7c1a8cd1083adb84b3c93501de \
|
|
217
|
+
--hash=sha256:eea7e5987445ab0b5ed258093722d5ecb8bb72217c5c9b1e21f64efe23ddebdb \
|
|
218
|
+
--hash=sha256:fce6da15d73be5935b4438435c53adb512326a3e11e4f90793ea87cd9f018254
|
|
219
219
|
# via ipykernel
|
|
220
220
|
decorator==5.2.1 \
|
|
221
221
|
--hash=sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360 \
|
|
@@ -225,9 +225,9 @@ dill==0.4.0 \
|
|
|
225
225
|
--hash=sha256:0633f1d2df477324f53a895b02c901fb961bdbf65a17122586ea7019292cbcf0 \
|
|
226
226
|
--hash=sha256:44f54bf6412c2c8464c14e8243eb163690a9800dbe2c367330883b19c7561049
|
|
227
227
|
# via pylint
|
|
228
|
-
exceptiongroup==1.3.
|
|
229
|
-
--hash=sha256:
|
|
230
|
-
--hash=sha256:
|
|
228
|
+
exceptiongroup==1.3.1 ; python_full_version < '3.11' \
|
|
229
|
+
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
|
|
230
|
+
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
|
|
231
231
|
# via
|
|
232
232
|
# anyio
|
|
233
233
|
# ipython
|
|
@@ -254,9 +254,9 @@ idna==3.11 \
|
|
|
254
254
|
# via
|
|
255
255
|
# anyio
|
|
256
256
|
# httpx
|
|
257
|
-
importlib-metadata==8.7.
|
|
258
|
-
--hash=sha256:
|
|
259
|
-
--hash=sha256:
|
|
257
|
+
importlib-metadata==8.7.1 ; python_full_version < '3.10' \
|
|
258
|
+
--hash=sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb \
|
|
259
|
+
--hash=sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151
|
|
260
260
|
# via
|
|
261
261
|
# isort
|
|
262
262
|
# jupyter-client
|
|
@@ -278,13 +278,13 @@ ipython==8.18.1 ; python_full_version < '3.10' \
|
|
|
278
278
|
--hash=sha256:ca6f079bb33457c66e233e4580ebfc4128855b4cf6370dddd73842a9563e8a27 \
|
|
279
279
|
--hash=sha256:e8267419d72d81955ec1177f8a29aaa90ac80ad647499201119e2f05e99aa397
|
|
280
280
|
# via ipykernel
|
|
281
|
-
ipython==8.
|
|
282
|
-
--hash=sha256:
|
|
283
|
-
--hash=sha256:
|
|
281
|
+
ipython==8.38.0 ; python_full_version == '3.10.*' \
|
|
282
|
+
--hash=sha256:750162629d800ac65bb3b543a14e7a74b0e88063eac9b92124d4b2aa3f6d8e86 \
|
|
283
|
+
--hash=sha256:9cfea8c903ce0867cc2f23199ed8545eb741f3a69420bfcf3743ad1cec856d39
|
|
284
284
|
# via ipykernel
|
|
285
|
-
ipython==9.
|
|
286
|
-
--hash=sha256:
|
|
287
|
-
--hash=sha256:
|
|
285
|
+
ipython==9.9.0 ; python_full_version >= '3.11' \
|
|
286
|
+
--hash=sha256:48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220 \
|
|
287
|
+
--hash=sha256:b457fe9165df2b84e8ec909a97abcf2ed88f565970efba16b1f7229c283d252b
|
|
288
288
|
# via ipykernel
|
|
289
289
|
ipython-pygments-lexers==1.1.1 ; python_full_version >= '3.11' \
|
|
290
290
|
--hash=sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81 \
|
|
@@ -302,10 +302,14 @@ jedi==0.19.2 \
|
|
|
302
302
|
--hash=sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0 \
|
|
303
303
|
--hash=sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9
|
|
304
304
|
# via ipython
|
|
305
|
-
jupyter-client==8.6.3 \
|
|
305
|
+
jupyter-client==8.6.3 ; python_full_version < '3.10' \
|
|
306
306
|
--hash=sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419 \
|
|
307
307
|
--hash=sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f
|
|
308
308
|
# via ipykernel
|
|
309
|
+
jupyter-client==8.7.0 ; python_full_version >= '3.10' \
|
|
310
|
+
--hash=sha256:3357212d9cbe01209e59190f67a3a7e1f387a4f4e88d1e0433ad84d7b262531d \
|
|
311
|
+
--hash=sha256:3671a94fd25e62f5f2f554f5e95389c2294d89822378a5f2dd24353e1494a9e0
|
|
312
|
+
# via ipykernel
|
|
309
313
|
jupyter-core==5.8.1 ; python_full_version < '3.10' \
|
|
310
314
|
--hash=sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941 \
|
|
311
315
|
--hash=sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0
|
|
@@ -352,9 +356,9 @@ platformdirs==4.4.0 ; python_full_version < '3.10' \
|
|
|
352
356
|
# via
|
|
353
357
|
# jupyter-core
|
|
354
358
|
# pylint
|
|
355
|
-
platformdirs==4.5.
|
|
356
|
-
--hash=sha256:
|
|
357
|
-
--hash=sha256:
|
|
359
|
+
platformdirs==4.5.1 ; python_full_version >= '3.10' \
|
|
360
|
+
--hash=sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda \
|
|
361
|
+
--hash=sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31
|
|
358
362
|
# via
|
|
359
363
|
# jupyter-core
|
|
360
364
|
# pylint
|
|
@@ -366,26 +370,28 @@ prompt-toolkit==3.0.52 \
|
|
|
366
370
|
--hash=sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855 \
|
|
367
371
|
--hash=sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955
|
|
368
372
|
# via ipython
|
|
369
|
-
psutil==7.1
|
|
370
|
-
--hash=sha256:
|
|
371
|
-
--hash=sha256:
|
|
372
|
-
--hash=sha256:
|
|
373
|
-
--hash=sha256:
|
|
374
|
-
--hash=sha256:
|
|
375
|
-
--hash=sha256:
|
|
376
|
-
--hash=sha256:
|
|
377
|
-
--hash=sha256:
|
|
378
|
-
--hash=sha256:
|
|
379
|
-
--hash=sha256:
|
|
380
|
-
--hash=sha256:
|
|
381
|
-
--hash=sha256:
|
|
382
|
-
--hash=sha256:
|
|
383
|
-
--hash=sha256:
|
|
384
|
-
--hash=sha256:
|
|
385
|
-
--hash=sha256:
|
|
386
|
-
--hash=sha256:
|
|
387
|
-
--hash=sha256:
|
|
388
|
-
--hash=sha256:
|
|
373
|
+
psutil==7.2.1 \
|
|
374
|
+
--hash=sha256:05cc68dbb8c174828624062e73078e7e35406f4ca2d0866c272c2410d8ef06d1 \
|
|
375
|
+
--hash=sha256:08a2f175e48a898c8eb8eace45ce01777f4785bc744c90aa2cc7f2fa5462a266 \
|
|
376
|
+
--hash=sha256:0d67c1822c355aa6f7314d92018fb4268a76668a536f133599b91edd48759442 \
|
|
377
|
+
--hash=sha256:2ceae842a78d1603753561132d5ad1b2f8a7979cb0c283f5b52fb4e6e14b1a79 \
|
|
378
|
+
--hash=sha256:35630d5af80d5d0d49cfc4d64c1c13838baf6717a13effb35869a5919b854cdf \
|
|
379
|
+
--hash=sha256:3fce5f92c22b00cdefd1645aa58ab4877a01679e901555067b1bd77039aa589f \
|
|
380
|
+
--hash=sha256:494c513ccc53225ae23eec7fe6e1482f1b8a44674241b54561f755a898650679 \
|
|
381
|
+
--hash=sha256:5e38404ca2bb30ed7267a46c02f06ff842e92da3bb8c5bfdadbd35a5722314d8 \
|
|
382
|
+
--hash=sha256:81442dac7abfc2f4f4385ea9e12ddf5a796721c0f6133260687fec5c3780fa49 \
|
|
383
|
+
--hash=sha256:923f8653416604e356073e6e0bccbe7c09990acef442def2f5640dd0faa9689f \
|
|
384
|
+
--hash=sha256:93f3f7b0bb07711b49626e7940d6fe52aa9940ad86e8f7e74842e73189712129 \
|
|
385
|
+
--hash=sha256:99a4cd17a5fdd1f3d014396502daa70b5ec21bf4ffe38393e152f8e449757d67 \
|
|
386
|
+
--hash=sha256:ab2b98c9fc19f13f59628d94df5cc4cc4844bc572467d113a8b517d634e362c6 \
|
|
387
|
+
--hash=sha256:b1b0671619343aa71c20ff9767eced0483e4fc9e1f489d50923738caf6a03c17 \
|
|
388
|
+
--hash=sha256:b2e953fcfaedcfbc952b44744f22d16575d3aa78eb4f51ae74165b4e96e55f42 \
|
|
389
|
+
--hash=sha256:ba9f33bb525b14c3ea563b2fd521a84d2fa214ec59e3e6a2858f78d0844dd60d \
|
|
390
|
+
--hash=sha256:cfbe6b40ca48019a51827f20d830887b3107a74a79b01ceb8cc8de4ccb17b672 \
|
|
391
|
+
--hash=sha256:d34d2ca888208eea2b5c68186841336a7f5e0b990edec929be909353a202768a \
|
|
392
|
+
--hash=sha256:ea46c0d060491051d39f0d2cff4f98d5c72b288289f57a21556cc7d504db37fc \
|
|
393
|
+
--hash=sha256:f7583aec590485b43ca601dd9cea0dcd65bd7bb21d30ef4ddbf4ea6b5ed1bdd3 \
|
|
394
|
+
--hash=sha256:f78baafb38436d5a128f837fab2d92c276dfb48af01a240b861ae02b2413ada8
|
|
389
395
|
# via ipykernel
|
|
390
396
|
ptyprocess==0.7.0 ; (python_full_version < '3.10' and sys_platform == 'emscripten') or (sys_platform != 'emscripten' and sys_platform != 'win32') \
|
|
391
397
|
--hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \
|
|
@@ -492,13 +498,17 @@ pygments==2.19.2 \
|
|
|
492
498
|
pylint==3.3.9 ; python_full_version < '3.10' \
|
|
493
499
|
--hash=sha256:01f9b0462c7730f94786c283f3e52a1fbdf0494bbe0971a78d7277ef46a751e7 \
|
|
494
500
|
--hash=sha256:d312737d7b25ccf6b01cc4ac629b5dcd14a0fcf3ec392735ac70f137a9d5f83a
|
|
495
|
-
pylint==4.0.
|
|
496
|
-
--hash=sha256:
|
|
497
|
-
--hash=sha256:
|
|
498
|
-
pytest==8.4.2 \
|
|
501
|
+
pylint==4.0.4 ; python_full_version >= '3.10' \
|
|
502
|
+
--hash=sha256:63e06a37d5922555ee2c20963eb42559918c20bd2b21244e4ef426e7c43b92e0 \
|
|
503
|
+
--hash=sha256:d9b71674e19b1c36d79265b5887bf8e55278cbe236c9e95d22dc82cf044fdbd2
|
|
504
|
+
pytest==8.4.2 ; python_full_version < '3.10' \
|
|
499
505
|
--hash=sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01 \
|
|
500
506
|
--hash=sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79
|
|
501
507
|
# via pytest-dotenv
|
|
508
|
+
pytest==9.0.2 ; python_full_version >= '3.10' \
|
|
509
|
+
--hash=sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b \
|
|
510
|
+
--hash=sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11
|
|
511
|
+
# via pytest-dotenv
|
|
502
512
|
pytest-dotenv==0.5.2 \
|
|
503
513
|
--hash=sha256:2dc6c3ac6d8764c71c6d2804e902d0ff810fa19692e95fe138aefc9b1aa73732 \
|
|
504
514
|
--hash=sha256:40a2cece120a213898afaa5407673f6bd924b1fa7eafce6bda0e8abffe2f710f
|
|
@@ -616,10 +626,6 @@ six==1.17.0 \
|
|
|
616
626
|
--hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
|
|
617
627
|
--hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
|
|
618
628
|
# via python-dateutil
|
|
619
|
-
sniffio==1.3.1 \
|
|
620
|
-
--hash=sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 \
|
|
621
|
-
--hash=sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc
|
|
622
|
-
# via anyio
|
|
623
629
|
stack-data==0.6.3 \
|
|
624
630
|
--hash=sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9 \
|
|
625
631
|
--hash=sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695
|
|
@@ -674,19 +680,19 @@ tomlkit==0.13.3 \
|
|
|
674
680
|
--hash=sha256:430cf247ee57df2b94ee3fbe588e71d362a941ebb545dec29b53961d61add2a1 \
|
|
675
681
|
--hash=sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0
|
|
676
682
|
# via pylint
|
|
677
|
-
tornado==6.5.
|
|
678
|
-
--hash=sha256:
|
|
679
|
-
--hash=sha256:
|
|
680
|
-
--hash=sha256:
|
|
681
|
-
--hash=sha256:
|
|
682
|
-
--hash=sha256:
|
|
683
|
-
--hash=sha256:
|
|
684
|
-
--hash=sha256:
|
|
685
|
-
--hash=sha256:
|
|
686
|
-
--hash=sha256:
|
|
687
|
-
--hash=sha256:
|
|
688
|
-
--hash=sha256:
|
|
689
|
-
--hash=sha256:
|
|
683
|
+
tornado==6.5.4 \
|
|
684
|
+
--hash=sha256:053e6e16701eb6cbe641f308f4c1a9541f91b6261991160391bfc342e8a551a1 \
|
|
685
|
+
--hash=sha256:1768110f2411d5cd281bac0a090f707223ce77fd110424361092859e089b38d1 \
|
|
686
|
+
--hash=sha256:2d50f63dda1d2cac3ae1fa23d254e16b5e38153758470e9956cbc3d813d40843 \
|
|
687
|
+
--hash=sha256:50ff0a58b0dc97939d29da29cd624da010e7f804746621c78d14b80238669335 \
|
|
688
|
+
--hash=sha256:6076d5dda368c9328ff41ab5d9dd3608e695e8225d1cd0fd1e006f05da3635a8 \
|
|
689
|
+
--hash=sha256:6eb82872335a53dd063a4f10917b3efd28270b56a33db69009606a0312660a6f \
|
|
690
|
+
--hash=sha256:9c86b1643b33a4cd415f8d0fe53045f913bf07b4a3ef646b735a6a86047dda84 \
|
|
691
|
+
--hash=sha256:a22fa9047405d03260b483980635f0b041989d8bcc9a313f8fe18b411d84b1d7 \
|
|
692
|
+
--hash=sha256:d1cf66105dc6acb5af613c054955b8137e34a03698aa53272dbda4afe252be17 \
|
|
693
|
+
--hash=sha256:d6241c1a16b1c9e4cc28148b1cda97dd1c6cb4fb7068ac1bedc610768dff0ba9 \
|
|
694
|
+
--hash=sha256:e5fb5e04efa54cf0baabdd10061eb4148e0be137166146fff835745f59ab9f7f \
|
|
695
|
+
--hash=sha256:fa07d31e0cd85c60713f2b995da613588aa03e1303d75705dca6af8babc18ddc
|
|
690
696
|
# via
|
|
691
697
|
# ipykernel
|
|
692
698
|
# jupyter-client
|
package/requirements.txt
CHANGED
|
@@ -4,17 +4,17 @@ annotated-types==0.7.0 \
|
|
|
4
4
|
--hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \
|
|
5
5
|
--hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89
|
|
6
6
|
# via pydantic
|
|
7
|
-
anyio==4.
|
|
8
|
-
--hash=sha256:
|
|
9
|
-
--hash=sha256:
|
|
7
|
+
anyio==4.12.1 \
|
|
8
|
+
--hash=sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703 \
|
|
9
|
+
--hash=sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c
|
|
10
10
|
# via httpx
|
|
11
|
-
authlib==1.6.
|
|
12
|
-
--hash=sha256:
|
|
13
|
-
--hash=sha256:
|
|
11
|
+
authlib==1.6.6 \
|
|
12
|
+
--hash=sha256:45770e8e056d0f283451d9996fbb59b70d45722b45d854d58f32878d0a40c38e \
|
|
13
|
+
--hash=sha256:7d9e9bc535c13974313a87f53e8430eb6ea3d1cf6ae4f6efcd793f2e949143fd
|
|
14
14
|
# via planqk-service-sdk
|
|
15
|
-
certifi==
|
|
16
|
-
--hash=sha256:
|
|
17
|
-
--hash=sha256:
|
|
15
|
+
certifi==2026.1.4 \
|
|
16
|
+
--hash=sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c \
|
|
17
|
+
--hash=sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120
|
|
18
18
|
# via
|
|
19
19
|
# httpcore
|
|
20
20
|
# httpx
|
|
@@ -160,9 +160,9 @@ cryptography==46.0.3 \
|
|
|
160
160
|
--hash=sha256:ef639cb3372f69ec44915fafcd6698b6cc78fbe0c2ea41be867f6ed612811963 \
|
|
161
161
|
--hash=sha256:f260d0d41e9b4da1ed1e0f1ce571f97fe370b152ab18778e9e8f67d6af432018
|
|
162
162
|
# via authlib
|
|
163
|
-
exceptiongroup==1.3.
|
|
164
|
-
--hash=sha256:
|
|
165
|
-
--hash=sha256:
|
|
163
|
+
exceptiongroup==1.3.1 ; python_full_version < '3.11' \
|
|
164
|
+
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
|
|
165
|
+
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
|
|
166
166
|
# via anyio
|
|
167
167
|
h11==0.16.0 \
|
|
168
168
|
--hash=sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1 \
|
|
@@ -269,10 +269,6 @@ pydantic-core==2.23.4 \
|
|
|
269
269
|
--hash=sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee \
|
|
270
270
|
--hash=sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607
|
|
271
271
|
# via pydantic
|
|
272
|
-
sniffio==1.3.1 \
|
|
273
|
-
--hash=sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 \
|
|
274
|
-
--hash=sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc
|
|
275
|
-
# via anyio
|
|
276
272
|
typing-extensions==4.15.0 \
|
|
277
273
|
--hash=sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466 \
|
|
278
274
|
--hash=sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548
|
package/src/auth.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {AccessToken, ClientCredentials} from 'simple-oauth2'
|
|
2
2
|
|
|
3
|
-
export const DEFAULT_TOKEN_ENDPOINT = 'https://gateway.
|
|
3
|
+
export const DEFAULT_TOKEN_ENDPOINT = 'https://gateway.hub.kipu-quantum.com/token'
|
|
4
4
|
|
|
5
5
|
export class PlanqkServiceAuth {
|
|
6
6
|
private accessToken: AccessToken | undefined
|
|
@@ -36,6 +36,10 @@ export class PlanqkServiceAuth {
|
|
|
36
36
|
id: this.consumerKey,
|
|
37
37
|
secret: this.consumerSecret,
|
|
38
38
|
},
|
|
39
|
+
options: {
|
|
40
|
+
authorizationMethod: 'body',
|
|
41
|
+
bodyFormat: 'form'
|
|
42
|
+
}
|
|
39
43
|
})
|
|
40
44
|
return client.getToken({})
|
|
41
45
|
}
|
package/src/sdk/environments.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
export const PlanqkServiceApiEnvironment = {
|
|
4
|
-
Default: "https://gateway.
|
|
4
|
+
Default: "https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>",
|
|
5
5
|
} as const;
|
|
6
6
|
|
|
7
7
|
export type PlanqkServiceApiEnvironment = typeof PlanqkServiceApiEnvironment.Default;
|
package/uv.lock
CHANGED
|
@@ -20,17 +20,16 @@ wheels = [
|
|
|
20
20
|
|
|
21
21
|
[[package]]
|
|
22
22
|
name = "anyio"
|
|
23
|
-
version = "4.
|
|
23
|
+
version = "4.12.1"
|
|
24
24
|
source = { registry = "https://pypi.org/simple" }
|
|
25
25
|
dependencies = [
|
|
26
26
|
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
|
27
27
|
{ name = "idna" },
|
|
28
|
-
{ name = "sniffio" },
|
|
29
28
|
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
|
30
29
|
]
|
|
31
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
30
|
+
sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" }
|
|
32
31
|
wheels = [
|
|
33
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
32
|
+
{ url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" },
|
|
34
33
|
]
|
|
35
34
|
|
|
36
35
|
[[package]]
|
|
@@ -59,7 +58,7 @@ wheels = [
|
|
|
59
58
|
|
|
60
59
|
[[package]]
|
|
61
60
|
name = "astroid"
|
|
62
|
-
version = "4.0.
|
|
61
|
+
version = "4.0.3"
|
|
63
62
|
source = { registry = "https://pypi.org/simple" }
|
|
64
63
|
resolution-markers = [
|
|
65
64
|
"python_full_version >= '3.13'",
|
|
@@ -70,39 +69,39 @@ resolution-markers = [
|
|
|
70
69
|
dependencies = [
|
|
71
70
|
{ name = "typing-extensions", marker = "python_full_version == '3.10.*'" },
|
|
72
71
|
]
|
|
73
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
72
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a1/ca/c17d0f83016532a1ad87d1de96837164c99d47a3b6bbba28bd597c25b37a/astroid-4.0.3.tar.gz", hash = "sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3", size = 406224, upload-time = "2026-01-03T22:14:26.096Z" }
|
|
74
73
|
wheels = [
|
|
75
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/ce/66/686ac4fc6ef48f5bacde625adac698f41d5316a9753c2b20bb0931c9d4e2/astroid-4.0.3-py3-none-any.whl", hash = "sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14", size = 276443, upload-time = "2026-01-03T22:14:24.412Z" },
|
|
76
75
|
]
|
|
77
76
|
|
|
78
77
|
[[package]]
|
|
79
78
|
name = "asttokens"
|
|
80
|
-
version = "3.0.
|
|
79
|
+
version = "3.0.1"
|
|
81
80
|
source = { registry = "https://pypi.org/simple" }
|
|
82
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
81
|
+
sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" }
|
|
83
82
|
wheels = [
|
|
84
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" },
|
|
85
84
|
]
|
|
86
85
|
|
|
87
86
|
[[package]]
|
|
88
87
|
name = "authlib"
|
|
89
|
-
version = "1.6.
|
|
88
|
+
version = "1.6.6"
|
|
90
89
|
source = { registry = "https://pypi.org/simple" }
|
|
91
90
|
dependencies = [
|
|
92
91
|
{ name = "cryptography" },
|
|
93
92
|
]
|
|
94
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
93
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bb/9b/b1661026ff24bc641b76b78c5222d614776b0c085bcfdac9bd15a1cb4b35/authlib-1.6.6.tar.gz", hash = "sha256:45770e8e056d0f283451d9996fbb59b70d45722b45d854d58f32878d0a40c38e", size = 164894, upload-time = "2025-12-12T08:01:41.464Z" }
|
|
95
94
|
wheels = [
|
|
96
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/54/51/321e821856452f7386c4e9df866f196720b1ad0c5ea1623ea7399969ae3b/authlib-1.6.6-py2.py3-none-any.whl", hash = "sha256:7d9e9bc535c13974313a87f53e8430eb6ea3d1cf6ae4f6efcd793f2e949143fd", size = 244005, upload-time = "2025-12-12T08:01:40.209Z" },
|
|
97
96
|
]
|
|
98
97
|
|
|
99
98
|
[[package]]
|
|
100
99
|
name = "certifi"
|
|
101
|
-
version = "
|
|
100
|
+
version = "2026.1.4"
|
|
102
101
|
source = { registry = "https://pypi.org/simple" }
|
|
103
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
102
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e0/2d/a891ca51311197f6ad14a7ef42e2399f36cf2f9bd44752b3dc4eab60fdc5/certifi-2026.1.4.tar.gz", hash = "sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120", size = 154268, upload-time = "2026-01-04T02:42:41.825Z" }
|
|
104
103
|
wheels = [
|
|
105
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", size = 152900, upload-time = "2026-01-04T02:42:40.15Z" },
|
|
106
105
|
]
|
|
107
106
|
|
|
108
107
|
[[package]]
|
|
@@ -284,35 +283,35 @@ wheels = [
|
|
|
284
283
|
|
|
285
284
|
[[package]]
|
|
286
285
|
name = "debugpy"
|
|
287
|
-
version = "1.8.
|
|
288
|
-
source = { registry = "https://pypi.org/simple" }
|
|
289
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
290
|
-
wheels = [
|
|
291
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
292
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
293
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
294
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
295
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
296
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
297
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
298
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
299
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
300
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
301
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
302
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
303
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
304
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
305
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
307
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
308
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
309
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
310
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
311
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
312
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
313
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
314
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
286
|
+
version = "1.8.19"
|
|
287
|
+
source = { registry = "https://pypi.org/simple" }
|
|
288
|
+
sdist = { url = "https://files.pythonhosted.org/packages/73/75/9e12d4d42349b817cd545b89247696c67917aab907012ae5b64bbfea3199/debugpy-1.8.19.tar.gz", hash = "sha256:eea7e5987445ab0b5ed258093722d5ecb8bb72217c5c9b1e21f64efe23ddebdb", size = 1644590, upload-time = "2025-12-15T21:53:28.044Z" }
|
|
289
|
+
wheels = [
|
|
290
|
+
{ url = "https://files.pythonhosted.org/packages/bf/98/d57054371887f37d3c959a7a8dc3c76b763acb65f5e78d849d7db7cadc5b/debugpy-1.8.19-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:fce6da15d73be5935b4438435c53adb512326a3e11e4f90793ea87cd9f018254", size = 2098493, upload-time = "2025-12-15T21:53:30.149Z" },
|
|
291
|
+
{ url = "https://files.pythonhosted.org/packages/ee/dd/c517b9aa3500157a30e4f4c4f5149f880026bd039d2b940acd2383a85d8e/debugpy-1.8.19-cp310-cp310-manylinux_2_34_x86_64.whl", hash = "sha256:e24b1652a1df1ab04d81e7ead446a91c226de704ff5dde6bd0a0dbaab07aa3f2", size = 3087875, upload-time = "2025-12-15T21:53:31.511Z" },
|
|
292
|
+
{ url = "https://files.pythonhosted.org/packages/d8/57/3d5a5b0da9b63445253107ead151eff29190c6ad7440c68d1a59d56613aa/debugpy-1.8.19-cp310-cp310-win32.whl", hash = "sha256:327cb28c3ad9e17bc925efc7f7018195fd4787c2fe4b7af1eec11f1d19bdec62", size = 5239378, upload-time = "2025-12-15T21:53:32.979Z" },
|
|
293
|
+
{ url = "https://files.pythonhosted.org/packages/a6/36/7f9053c4c549160c87ae7e43800138f2695578c8b65947114c97250983b6/debugpy-1.8.19-cp310-cp310-win_amd64.whl", hash = "sha256:b7dd275cf2c99e53adb9654f5ae015f70415bbe2bacbe24cfee30d54b6aa03c5", size = 5271129, upload-time = "2025-12-15T21:53:35.085Z" },
|
|
294
|
+
{ url = "https://files.pythonhosted.org/packages/80/e2/48531a609b5a2aa94c6b6853afdfec8da05630ab9aaa96f1349e772119e9/debugpy-1.8.19-cp311-cp311-macosx_15_0_universal2.whl", hash = "sha256:c5dcfa21de1f735a4f7ced4556339a109aa0f618d366ede9da0a3600f2516d8b", size = 2207620, upload-time = "2025-12-15T21:53:37.1Z" },
|
|
295
|
+
{ url = "https://files.pythonhosted.org/packages/1b/d4/97775c01d56071969f57d93928899e5616a4cfbbf4c8cc75390d3a51c4a4/debugpy-1.8.19-cp311-cp311-manylinux_2_34_x86_64.whl", hash = "sha256:806d6800246244004625d5222d7765874ab2d22f3ba5f615416cf1342d61c488", size = 3170796, upload-time = "2025-12-15T21:53:38.513Z" },
|
|
296
|
+
{ url = "https://files.pythonhosted.org/packages/8d/7e/8c7681bdb05be9ec972bbb1245eb7c4c7b0679bb6a9e6408d808bc876d3d/debugpy-1.8.19-cp311-cp311-win32.whl", hash = "sha256:783a519e6dfb1f3cd773a9bda592f4887a65040cb0c7bd38dde410f4e53c40d4", size = 5164287, upload-time = "2025-12-15T21:53:40.857Z" },
|
|
297
|
+
{ url = "https://files.pythonhosted.org/packages/f2/a8/aaac7ff12ddf5d68a39e13a423a8490426f5f661384f5ad8d9062761bd8e/debugpy-1.8.19-cp311-cp311-win_amd64.whl", hash = "sha256:14035cbdbb1fe4b642babcdcb5935c2da3b1067ac211c5c5a8fdc0bb31adbcaa", size = 5188269, upload-time = "2025-12-15T21:53:42.359Z" },
|
|
298
|
+
{ url = "https://files.pythonhosted.org/packages/4a/15/d762e5263d9e25b763b78be72dc084c7a32113a0bac119e2f7acae7700ed/debugpy-1.8.19-cp312-cp312-macosx_15_0_universal2.whl", hash = "sha256:bccb1540a49cde77edc7ce7d9d075c1dbeb2414751bc0048c7a11e1b597a4c2e", size = 2549995, upload-time = "2025-12-15T21:53:43.773Z" },
|
|
299
|
+
{ url = "https://files.pythonhosted.org/packages/a7/88/f7d25c68b18873b7c53d7c156ca7a7ffd8e77073aa0eac170a9b679cf786/debugpy-1.8.19-cp312-cp312-manylinux_2_34_x86_64.whl", hash = "sha256:e9c68d9a382ec754dc05ed1d1b4ed5bd824b9f7c1a8cd1083adb84b3c93501de", size = 4309891, upload-time = "2025-12-15T21:53:45.26Z" },
|
|
300
|
+
{ url = "https://files.pythonhosted.org/packages/c5/4f/a65e973aba3865794da65f71971dca01ae66666132c7b2647182d5be0c5f/debugpy-1.8.19-cp312-cp312-win32.whl", hash = "sha256:6599cab8a783d1496ae9984c52cb13b7c4a3bd06a8e6c33446832a5d97ce0bee", size = 5286355, upload-time = "2025-12-15T21:53:46.763Z" },
|
|
301
|
+
{ url = "https://files.pythonhosted.org/packages/d8/3a/d3d8b48fec96e3d824e404bf428276fb8419dfa766f78f10b08da1cb2986/debugpy-1.8.19-cp312-cp312-win_amd64.whl", hash = "sha256:66e3d2fd8f2035a8f111eb127fa508469dfa40928a89b460b41fd988684dc83d", size = 5328239, upload-time = "2025-12-15T21:53:48.868Z" },
|
|
302
|
+
{ url = "https://files.pythonhosted.org/packages/71/3d/388035a31a59c26f1ecc8d86af607d0c42e20ef80074147cd07b180c4349/debugpy-1.8.19-cp313-cp313-macosx_15_0_universal2.whl", hash = "sha256:91e35db2672a0abaf325f4868fcac9c1674a0d9ad9bb8a8c849c03a5ebba3e6d", size = 2538859, upload-time = "2025-12-15T21:53:50.478Z" },
|
|
303
|
+
{ url = "https://files.pythonhosted.org/packages/4a/19/c93a0772d0962294f083dbdb113af1a7427bb632d36e5314297068f55db7/debugpy-1.8.19-cp313-cp313-manylinux_2_34_x86_64.whl", hash = "sha256:85016a73ab84dea1c1f1dcd88ec692993bcbe4532d1b49ecb5f3c688ae50c606", size = 4292575, upload-time = "2025-12-15T21:53:51.821Z" },
|
|
304
|
+
{ url = "https://files.pythonhosted.org/packages/5c/56/09e48ab796b0a77e3d7dc250f95251832b8bf6838c9632f6100c98bdf426/debugpy-1.8.19-cp313-cp313-win32.whl", hash = "sha256:b605f17e89ba0ecee994391194285fada89cee111cfcd29d6f2ee11cbdc40976", size = 5286209, upload-time = "2025-12-15T21:53:53.602Z" },
|
|
305
|
+
{ url = "https://files.pythonhosted.org/packages/fb/4e/931480b9552c7d0feebe40c73725dd7703dcc578ba9efc14fe0e6d31cfd1/debugpy-1.8.19-cp313-cp313-win_amd64.whl", hash = "sha256:c30639998a9f9cd9699b4b621942c0179a6527f083c72351f95c6ab1728d5b73", size = 5328206, upload-time = "2025-12-15T21:53:55.433Z" },
|
|
306
|
+
{ url = "https://files.pythonhosted.org/packages/f6/b9/cbec520c3a00508327476c7fce26fbafef98f412707e511eb9d19a2ef467/debugpy-1.8.19-cp314-cp314-macosx_15_0_universal2.whl", hash = "sha256:1e8c4d1bd230067bf1bbcdbd6032e5a57068638eb28b9153d008ecde288152af", size = 2537372, upload-time = "2025-12-15T21:53:57.318Z" },
|
|
307
|
+
{ url = "https://files.pythonhosted.org/packages/88/5e/cf4e4dc712a141e10d58405c58c8268554aec3c35c09cdcda7535ff13f76/debugpy-1.8.19-cp314-cp314-manylinux_2_34_x86_64.whl", hash = "sha256:d40c016c1f538dbf1762936e3aeb43a89b965069d9f60f9e39d35d9d25e6b809", size = 4268729, upload-time = "2025-12-15T21:53:58.712Z" },
|
|
308
|
+
{ url = "https://files.pythonhosted.org/packages/82/a3/c91a087ab21f1047db328c1d3eb5d1ff0e52de9e74f9f6f6fa14cdd93d58/debugpy-1.8.19-cp314-cp314-win32.whl", hash = "sha256:0601708223fe1cd0e27c6cce67a899d92c7d68e73690211e6788a4b0e1903f5b", size = 5286388, upload-time = "2025-12-15T21:54:00.687Z" },
|
|
309
|
+
{ url = "https://files.pythonhosted.org/packages/17/b8/bfdc30b6e94f1eff09f2dc9cc1f9cd1c6cde3d996bcbd36ce2d9a4956e99/debugpy-1.8.19-cp314-cp314-win_amd64.whl", hash = "sha256:8e19a725f5d486f20e53a1dde2ab8bb2c9607c40c00a42ab646def962b41125f", size = 5327741, upload-time = "2025-12-15T21:54:02.148Z" },
|
|
310
|
+
{ url = "https://files.pythonhosted.org/packages/0b/27/9e6223367eef0bc98299418768b4e885ce3c14bb6fd03473a1b8729b1163/debugpy-1.8.19-cp39-cp39-macosx_15_0_x86_64.whl", hash = "sha256:c047177ab2d286451f242b855b650d313198c4a987140d4b35218b2855a64a4a", size = 2099782, upload-time = "2025-12-15T21:54:09.768Z" },
|
|
311
|
+
{ url = "https://files.pythonhosted.org/packages/3c/ab/7f3dccc256a18b535c915a84501925e50f95f0e4bc8b85779932a952b71f/debugpy-1.8.19-cp39-cp39-manylinux_2_34_x86_64.whl", hash = "sha256:4468de0c30012d367944f0eab4ecb8371736e8ef9522a465f61214f344c11183", size = 3080573, upload-time = "2025-12-15T21:54:11.575Z" },
|
|
312
|
+
{ url = "https://files.pythonhosted.org/packages/a7/78/00581bffa724a0d4ddfd7172863c48afe3776c72110289f40c06baec6d23/debugpy-1.8.19-cp39-cp39-win32.whl", hash = "sha256:7b62c0f015120ede25e5124a5f9d8a424e1208e3d96a36c89958f046ee21fff6", size = 5240246, upload-time = "2025-12-15T21:54:13.086Z" },
|
|
313
|
+
{ url = "https://files.pythonhosted.org/packages/5b/a7/5731bea7b69070ee8a97b5a6fbe5d6e5dff66bdce347c97fa286cbc04119/debugpy-1.8.19-cp39-cp39-win_amd64.whl", hash = "sha256:76f566baaf7f3e06adbe67ffedccd2ee911d1e486f55931939ce3f0fe1090774", size = 5271902, upload-time = "2025-12-15T21:54:14.596Z" },
|
|
314
|
+
{ url = "https://files.pythonhosted.org/packages/25/3e/e27078370414ef35fafad2c06d182110073daaeb5d3bf734b0b1eeefe452/debugpy-1.8.19-py2.py3-none-any.whl", hash = "sha256:360ffd231a780abbc414ba0f005dad409e71c78637efe8f2bd75837132a41d38", size = 5292321, upload-time = "2025-12-15T21:54:16.024Z" },
|
|
316
315
|
]
|
|
317
316
|
|
|
318
317
|
[[package]]
|
|
@@ -335,14 +334,14 @@ wheels = [
|
|
|
335
334
|
|
|
336
335
|
[[package]]
|
|
337
336
|
name = "exceptiongroup"
|
|
338
|
-
version = "1.3.
|
|
337
|
+
version = "1.3.1"
|
|
339
338
|
source = { registry = "https://pypi.org/simple" }
|
|
340
339
|
dependencies = [
|
|
341
340
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
342
341
|
]
|
|
343
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
342
|
+
sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" }
|
|
344
343
|
wheels = [
|
|
345
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
344
|
+
{ url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" },
|
|
346
345
|
]
|
|
347
346
|
|
|
348
347
|
[[package]]
|
|
@@ -402,14 +401,14 @@ wheels = [
|
|
|
402
401
|
|
|
403
402
|
[[package]]
|
|
404
403
|
name = "importlib-metadata"
|
|
405
|
-
version = "8.7.
|
|
404
|
+
version = "8.7.1"
|
|
406
405
|
source = { registry = "https://pypi.org/simple" }
|
|
407
406
|
dependencies = [
|
|
408
407
|
{ name = "zipp", marker = "python_full_version < '3.10'" },
|
|
409
408
|
]
|
|
410
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
409
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/49/3b30cad09e7771a4982d9975a8cbf64f00d4a1ececb53297f1d9a7be1b10/importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb", size = 57107, upload-time = "2025-12-21T10:00:19.278Z" }
|
|
411
410
|
wheels = [
|
|
412
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
411
|
+
{ url = "https://files.pythonhosted.org/packages/fa/5e/f8e9a1d23b9c20a551a8a02ea3637b4642e22c2626e3a13a9a29cdea99eb/importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151", size = 27865, upload-time = "2025-12-21T10:00:18.329Z" },
|
|
413
412
|
]
|
|
414
413
|
|
|
415
414
|
[[package]]
|
|
@@ -451,7 +450,7 @@ dependencies = [
|
|
|
451
450
|
{ name = "comm", marker = "python_full_version < '3.10'" },
|
|
452
451
|
{ name = "debugpy", marker = "python_full_version < '3.10'" },
|
|
453
452
|
{ name = "ipython", version = "8.18.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
454
|
-
{ name = "jupyter-client", marker = "python_full_version < '3.10'" },
|
|
453
|
+
{ name = "jupyter-client", version = "8.6.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
455
454
|
{ name = "jupyter-core", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
456
455
|
{ name = "matplotlib-inline", marker = "python_full_version < '3.10'" },
|
|
457
456
|
{ name = "nest-asyncio", marker = "python_full_version < '3.10'" },
|
|
@@ -480,9 +479,9 @@ dependencies = [
|
|
|
480
479
|
{ name = "appnope", marker = "python_full_version >= '3.10' and sys_platform == 'darwin'" },
|
|
481
480
|
{ name = "comm", marker = "python_full_version >= '3.10'" },
|
|
482
481
|
{ name = "debugpy", marker = "python_full_version >= '3.10'" },
|
|
483
|
-
{ name = "ipython", version = "8.
|
|
484
|
-
{ name = "ipython", version = "9.
|
|
485
|
-
{ name = "jupyter-client", marker = "python_full_version >= '3.10'" },
|
|
482
|
+
{ name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" },
|
|
483
|
+
{ name = "ipython", version = "9.9.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" },
|
|
484
|
+
{ name = "jupyter-client", version = "8.7.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
486
485
|
{ name = "jupyter-core", version = "5.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
487
486
|
{ name = "matplotlib-inline", marker = "python_full_version >= '3.10'" },
|
|
488
487
|
{ name = "nest-asyncio", marker = "python_full_version >= '3.10'" },
|
|
@@ -524,7 +523,7 @@ wheels = [
|
|
|
524
523
|
|
|
525
524
|
[[package]]
|
|
526
525
|
name = "ipython"
|
|
527
|
-
version = "8.
|
|
526
|
+
version = "8.38.0"
|
|
528
527
|
source = { registry = "https://pypi.org/simple" }
|
|
529
528
|
resolution-markers = [
|
|
530
529
|
"python_full_version == '3.10.*'",
|
|
@@ -542,14 +541,14 @@ dependencies = [
|
|
|
542
541
|
{ name = "traitlets", marker = "python_full_version == '3.10.*'" },
|
|
543
542
|
{ name = "typing-extensions", marker = "python_full_version == '3.10.*'" },
|
|
544
543
|
]
|
|
545
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
544
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e5/61/1810830e8b93c72dcd3c0f150c80a00c3deb229562d9423807ec92c3a539/ipython-8.38.0.tar.gz", hash = "sha256:9cfea8c903ce0867cc2f23199ed8545eb741f3a69420bfcf3743ad1cec856d39", size = 5513996, upload-time = "2026-01-05T10:59:06.901Z" }
|
|
546
545
|
wheels = [
|
|
547
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
546
|
+
{ url = "https://files.pythonhosted.org/packages/9f/df/db59624f4c71b39717c423409950ac3f2c8b2ce4b0aac843112c7fb3f721/ipython-8.38.0-py3-none-any.whl", hash = "sha256:750162629d800ac65bb3b543a14e7a74b0e88063eac9b92124d4b2aa3f6d8e86", size = 831813, upload-time = "2026-01-05T10:59:04.239Z" },
|
|
548
547
|
]
|
|
549
548
|
|
|
550
549
|
[[package]]
|
|
551
550
|
name = "ipython"
|
|
552
|
-
version = "9.
|
|
551
|
+
version = "9.9.0"
|
|
553
552
|
source = { registry = "https://pypi.org/simple" }
|
|
554
553
|
resolution-markers = [
|
|
555
554
|
"python_full_version >= '3.13'",
|
|
@@ -569,9 +568,9 @@ dependencies = [
|
|
|
569
568
|
{ name = "traitlets", marker = "python_full_version >= '3.11'" },
|
|
570
569
|
{ name = "typing-extensions", marker = "python_full_version == '3.11.*'" },
|
|
571
570
|
]
|
|
572
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
571
|
+
sdist = { url = "https://files.pythonhosted.org/packages/46/dd/fb08d22ec0c27e73c8bc8f71810709870d51cadaf27b7ddd3f011236c100/ipython-9.9.0.tar.gz", hash = "sha256:48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220", size = 4425043, upload-time = "2026-01-05T12:36:46.233Z" }
|
|
573
572
|
wheels = [
|
|
574
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
573
|
+
{ url = "https://files.pythonhosted.org/packages/86/92/162cfaee4ccf370465c5af1ce36a9eacec1becb552f2033bb3584e6f640a/ipython-9.9.0-py3-none-any.whl", hash = "sha256:b457fe9165df2b84e8ec909a97abcf2ed88f565970efba16b1f7229c283d252b", size = 621431, upload-time = "2026-01-05T12:36:44.669Z" },
|
|
575
574
|
]
|
|
576
575
|
|
|
577
576
|
[[package]]
|
|
@@ -632,20 +631,44 @@ wheels = [
|
|
|
632
631
|
name = "jupyter-client"
|
|
633
632
|
version = "8.6.3"
|
|
634
633
|
source = { registry = "https://pypi.org/simple" }
|
|
634
|
+
resolution-markers = [
|
|
635
|
+
"python_full_version < '3.10'",
|
|
636
|
+
]
|
|
635
637
|
dependencies = [
|
|
636
638
|
{ name = "importlib-metadata", marker = "python_full_version < '3.10'" },
|
|
637
639
|
{ name = "jupyter-core", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
638
|
-
{ name = "
|
|
639
|
-
{ name = "
|
|
640
|
-
{ name = "
|
|
641
|
-
{ name = "
|
|
642
|
-
{ name = "traitlets" },
|
|
640
|
+
{ name = "python-dateutil", marker = "python_full_version < '3.10'" },
|
|
641
|
+
{ name = "pyzmq", marker = "python_full_version < '3.10'" },
|
|
642
|
+
{ name = "tornado", marker = "python_full_version < '3.10'" },
|
|
643
|
+
{ name = "traitlets", marker = "python_full_version < '3.10'" },
|
|
643
644
|
]
|
|
644
645
|
sdist = { url = "https://files.pythonhosted.org/packages/71/22/bf9f12fdaeae18019a468b68952a60fe6dbab5d67cd2a103cac7659b41ca/jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419", size = 342019, upload-time = "2024-09-17T10:44:17.613Z" }
|
|
645
646
|
wheels = [
|
|
646
647
|
{ url = "https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f", size = 106105, upload-time = "2024-09-17T10:44:15.218Z" },
|
|
647
648
|
]
|
|
648
649
|
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "jupyter-client"
|
|
652
|
+
version = "8.7.0"
|
|
653
|
+
source = { registry = "https://pypi.org/simple" }
|
|
654
|
+
resolution-markers = [
|
|
655
|
+
"python_full_version >= '3.13'",
|
|
656
|
+
"python_full_version == '3.12.*'",
|
|
657
|
+
"python_full_version == '3.11.*'",
|
|
658
|
+
"python_full_version == '3.10.*'",
|
|
659
|
+
]
|
|
660
|
+
dependencies = [
|
|
661
|
+
{ name = "jupyter-core", version = "5.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
662
|
+
{ name = "python-dateutil", marker = "python_full_version >= '3.10'" },
|
|
663
|
+
{ name = "pyzmq", marker = "python_full_version >= '3.10'" },
|
|
664
|
+
{ name = "tornado", marker = "python_full_version >= '3.10'" },
|
|
665
|
+
{ name = "traitlets", marker = "python_full_version >= '3.10'" },
|
|
666
|
+
]
|
|
667
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a6/27/d10de45e8ad4ce872372c4a3a37b7b35b6b064f6f023a5c14ffcced4d59d/jupyter_client-8.7.0.tar.gz", hash = "sha256:3357212d9cbe01209e59190f67a3a7e1f387a4f4e88d1e0433ad84d7b262531d", size = 344691, upload-time = "2025-12-09T18:37:01.953Z" }
|
|
668
|
+
wheels = [
|
|
669
|
+
{ url = "https://files.pythonhosted.org/packages/bb/f5/fddaec430367be9d62a7ed125530e133bfd4a1c0350fe221149ee0f2b526/jupyter_client-8.7.0-py3-none-any.whl", hash = "sha256:3671a94fd25e62f5f2f554f5e95389c2294d89822378a5f2dd24353e1494a9e0", size = 106215, upload-time = "2025-12-09T18:37:00.024Z" },
|
|
670
|
+
]
|
|
671
|
+
|
|
649
672
|
[[package]]
|
|
650
673
|
name = "jupyter-core"
|
|
651
674
|
version = "5.8.1"
|
|
@@ -674,7 +697,7 @@ resolution-markers = [
|
|
|
674
697
|
"python_full_version == '3.10.*'",
|
|
675
698
|
]
|
|
676
699
|
dependencies = [
|
|
677
|
-
{ name = "platformdirs", version = "4.5.
|
|
700
|
+
{ name = "platformdirs", version = "4.5.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
678
701
|
{ name = "traitlets", marker = "python_full_version >= '3.10'" },
|
|
679
702
|
]
|
|
680
703
|
sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" }
|
|
@@ -744,7 +767,7 @@ wheels = [
|
|
|
744
767
|
|
|
745
768
|
[[package]]
|
|
746
769
|
name = "planqk-service-sdk"
|
|
747
|
-
version = "2.
|
|
770
|
+
version = "2.10.1"
|
|
748
771
|
source = { editable = "." }
|
|
749
772
|
dependencies = [
|
|
750
773
|
{ name = "authlib" },
|
|
@@ -757,8 +780,9 @@ dev = [
|
|
|
757
780
|
{ name = "ipykernel", version = "6.31.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
758
781
|
{ name = "ipykernel", version = "7.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
759
782
|
{ name = "pylint", version = "3.3.9", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
760
|
-
{ name = "pylint", version = "4.0.
|
|
761
|
-
{ name = "pytest" },
|
|
783
|
+
{ name = "pylint", version = "4.0.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
784
|
+
{ name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
785
|
+
{ name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
762
786
|
{ name = "pytest-dotenv" },
|
|
763
787
|
]
|
|
764
788
|
|
|
@@ -791,7 +815,7 @@ wheels = [
|
|
|
791
815
|
|
|
792
816
|
[[package]]
|
|
793
817
|
name = "platformdirs"
|
|
794
|
-
version = "4.5.
|
|
818
|
+
version = "4.5.1"
|
|
795
819
|
source = { registry = "https://pypi.org/simple" }
|
|
796
820
|
resolution-markers = [
|
|
797
821
|
"python_full_version >= '3.13'",
|
|
@@ -799,9 +823,9 @@ resolution-markers = [
|
|
|
799
823
|
"python_full_version == '3.11.*'",
|
|
800
824
|
"python_full_version == '3.10.*'",
|
|
801
825
|
]
|
|
802
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
826
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cf/86/0248f086a84f01b37aaec0fa567b397df1a119f73c16f6c7a9aac73ea309/platformdirs-4.5.1.tar.gz", hash = "sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda", size = 21715, upload-time = "2025-12-05T13:52:58.638Z" }
|
|
803
827
|
wheels = [
|
|
804
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
828
|
+
{ url = "https://files.pythonhosted.org/packages/cb/28/3bfe2fa5a7b9c46fe7e13c97bda14c895fb10fa2ebf1d0abb90e0cea7ee1/platformdirs-4.5.1-py3-none-any.whl", hash = "sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31", size = 18731, upload-time = "2025-12-05T13:52:56.823Z" },
|
|
805
829
|
]
|
|
806
830
|
|
|
807
831
|
[[package]]
|
|
@@ -827,28 +851,30 @@ wheels = [
|
|
|
827
851
|
|
|
828
852
|
[[package]]
|
|
829
853
|
name = "psutil"
|
|
830
|
-
version = "7.1
|
|
831
|
-
source = { registry = "https://pypi.org/simple" }
|
|
832
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
833
|
-
wheels = [
|
|
834
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
835
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
836
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
837
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
838
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
839
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
840
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
841
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
842
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
843
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
844
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
845
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
846
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
847
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
848
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
849
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
850
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
851
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
854
|
+
version = "7.2.1"
|
|
855
|
+
source = { registry = "https://pypi.org/simple" }
|
|
856
|
+
sdist = { url = "https://files.pythonhosted.org/packages/73/cb/09e5184fb5fc0358d110fc3ca7f6b1d033800734d34cac10f4136cfac10e/psutil-7.2.1.tar.gz", hash = "sha256:f7583aec590485b43ca601dd9cea0dcd65bd7bb21d30ef4ddbf4ea6b5ed1bdd3", size = 490253, upload-time = "2025-12-29T08:26:00.169Z" }
|
|
857
|
+
wheels = [
|
|
858
|
+
{ url = "https://files.pythonhosted.org/packages/77/8e/f0c242053a368c2aa89584ecd1b054a18683f13d6e5a318fc9ec36582c94/psutil-7.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ba9f33bb525b14c3ea563b2fd521a84d2fa214ec59e3e6a2858f78d0844dd60d", size = 129624, upload-time = "2025-12-29T08:26:04.255Z" },
|
|
859
|
+
{ url = "https://files.pythonhosted.org/packages/26/97/a58a4968f8990617decee234258a2b4fc7cd9e35668387646c1963e69f26/psutil-7.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:81442dac7abfc2f4f4385ea9e12ddf5a796721c0f6133260687fec5c3780fa49", size = 130132, upload-time = "2025-12-29T08:26:06.228Z" },
|
|
860
|
+
{ url = "https://files.pythonhosted.org/packages/db/6d/ed44901e830739af5f72a85fa7ec5ff1edea7f81bfbf4875e409007149bd/psutil-7.2.1-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ea46c0d060491051d39f0d2cff4f98d5c72b288289f57a21556cc7d504db37fc", size = 180612, upload-time = "2025-12-29T08:26:08.276Z" },
|
|
861
|
+
{ url = "https://files.pythonhosted.org/packages/c7/65/b628f8459bca4efbfae50d4bf3feaab803de9a160b9d5f3bd9295a33f0c2/psutil-7.2.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:35630d5af80d5d0d49cfc4d64c1c13838baf6717a13effb35869a5919b854cdf", size = 183201, upload-time = "2025-12-29T08:26:10.622Z" },
|
|
862
|
+
{ url = "https://files.pythonhosted.org/packages/fb/23/851cadc9764edcc18f0effe7d0bf69f727d4cf2442deb4a9f78d4e4f30f2/psutil-7.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:923f8653416604e356073e6e0bccbe7c09990acef442def2f5640dd0faa9689f", size = 139081, upload-time = "2025-12-29T08:26:12.483Z" },
|
|
863
|
+
{ url = "https://files.pythonhosted.org/packages/59/82/d63e8494ec5758029f31c6cb06d7d161175d8281e91d011a4a441c8a43b5/psutil-7.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cfbe6b40ca48019a51827f20d830887b3107a74a79b01ceb8cc8de4ccb17b672", size = 134767, upload-time = "2025-12-29T08:26:14.528Z" },
|
|
864
|
+
{ url = "https://files.pythonhosted.org/packages/05/c2/5fb764bd61e40e1fe756a44bd4c21827228394c17414ade348e28f83cd79/psutil-7.2.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:494c513ccc53225ae23eec7fe6e1482f1b8a44674241b54561f755a898650679", size = 129716, upload-time = "2025-12-29T08:26:16.017Z" },
|
|
865
|
+
{ url = "https://files.pythonhosted.org/packages/c9/d2/935039c20e06f615d9ca6ca0ab756cf8408a19d298ffaa08666bc18dc805/psutil-7.2.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:3fce5f92c22b00cdefd1645aa58ab4877a01679e901555067b1bd77039aa589f", size = 130133, upload-time = "2025-12-29T08:26:18.009Z" },
|
|
866
|
+
{ url = "https://files.pythonhosted.org/packages/77/69/19f1eb0e01d24c2b3eacbc2f78d3b5add8a89bf0bb69465bc8d563cc33de/psutil-7.2.1-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93f3f7b0bb07711b49626e7940d6fe52aa9940ad86e8f7e74842e73189712129", size = 181518, upload-time = "2025-12-29T08:26:20.241Z" },
|
|
867
|
+
{ url = "https://files.pythonhosted.org/packages/e1/6d/7e18b1b4fa13ad370787626c95887b027656ad4829c156bb6569d02f3262/psutil-7.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d34d2ca888208eea2b5c68186841336a7f5e0b990edec929be909353a202768a", size = 184348, upload-time = "2025-12-29T08:26:22.215Z" },
|
|
868
|
+
{ url = "https://files.pythonhosted.org/packages/98/60/1672114392dd879586d60dd97896325df47d9a130ac7401318005aab28ec/psutil-7.2.1-cp314-cp314t-win_amd64.whl", hash = "sha256:2ceae842a78d1603753561132d5ad1b2f8a7979cb0c283f5b52fb4e6e14b1a79", size = 140400, upload-time = "2025-12-29T08:26:23.993Z" },
|
|
869
|
+
{ url = "https://files.pythonhosted.org/packages/fb/7b/d0e9d4513c46e46897b46bcfc410d51fc65735837ea57a25170f298326e6/psutil-7.2.1-cp314-cp314t-win_arm64.whl", hash = "sha256:08a2f175e48a898c8eb8eace45ce01777f4785bc744c90aa2cc7f2fa5462a266", size = 135430, upload-time = "2025-12-29T08:26:25.999Z" },
|
|
870
|
+
{ url = "https://files.pythonhosted.org/packages/c5/cf/5180eb8c8bdf6a503c6919f1da28328bd1e6b3b1b5b9d5b01ae64f019616/psutil-7.2.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b2e953fcfaedcfbc952b44744f22d16575d3aa78eb4f51ae74165b4e96e55f42", size = 128137, upload-time = "2025-12-29T08:26:27.759Z" },
|
|
871
|
+
{ url = "https://files.pythonhosted.org/packages/c5/2c/78e4a789306a92ade5000da4f5de3255202c534acdadc3aac7b5458fadef/psutil-7.2.1-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:05cc68dbb8c174828624062e73078e7e35406f4ca2d0866c272c2410d8ef06d1", size = 128947, upload-time = "2025-12-29T08:26:29.548Z" },
|
|
872
|
+
{ url = "https://files.pythonhosted.org/packages/29/f8/40e01c350ad9a2b3cb4e6adbcc8a83b17ee50dd5792102b6142385937db5/psutil-7.2.1-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e38404ca2bb30ed7267a46c02f06ff842e92da3bb8c5bfdadbd35a5722314d8", size = 154694, upload-time = "2025-12-29T08:26:32.147Z" },
|
|
873
|
+
{ url = "https://files.pythonhosted.org/packages/06/e4/b751cdf839c011a9714a783f120e6a86b7494eb70044d7d81a25a5cd295f/psutil-7.2.1-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab2b98c9fc19f13f59628d94df5cc4cc4844bc572467d113a8b517d634e362c6", size = 156136, upload-time = "2025-12-29T08:26:34.079Z" },
|
|
874
|
+
{ url = "https://files.pythonhosted.org/packages/44/ad/bbf6595a8134ee1e94a4487af3f132cef7fce43aef4a93b49912a48c3af7/psutil-7.2.1-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f78baafb38436d5a128f837fab2d92c276dfb48af01a240b861ae02b2413ada8", size = 148108, upload-time = "2025-12-29T08:26:36.225Z" },
|
|
875
|
+
{ url = "https://files.pythonhosted.org/packages/1c/15/dd6fd869753ce82ff64dcbc18356093471a5a5adf4f77ed1f805d473d859/psutil-7.2.1-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:99a4cd17a5fdd1f3d014396502daa70b5ec21bf4ffe38393e152f8e449757d67", size = 147402, upload-time = "2025-12-29T08:26:39.21Z" },
|
|
876
|
+
{ url = "https://files.pythonhosted.org/packages/34/68/d9317542e3f2b180c4306e3f45d3c922d7e86d8ce39f941bb9e2e9d8599e/psutil-7.2.1-cp37-abi3-win_amd64.whl", hash = "sha256:b1b0671619343aa71c20ff9767eced0483e4fc9e1f489d50923738caf6a03c17", size = 136938, upload-time = "2025-12-29T08:26:41.036Z" },
|
|
877
|
+
{ url = "https://files.pythonhosted.org/packages/3e/73/2ce007f4198c80fcf2cb24c169884f833fe93fbc03d55d302627b094ee91/psutil-7.2.1-cp37-abi3-win_arm64.whl", hash = "sha256:0d67c1822c355aa6f7314d92018fb4268a76668a536f133599b91edd48759442", size = 133836, upload-time = "2025-12-29T08:26:43.086Z" },
|
|
852
878
|
]
|
|
853
879
|
|
|
854
880
|
[[package]]
|
|
@@ -1013,7 +1039,7 @@ wheels = [
|
|
|
1013
1039
|
|
|
1014
1040
|
[[package]]
|
|
1015
1041
|
name = "pylint"
|
|
1016
|
-
version = "4.0.
|
|
1042
|
+
version = "4.0.4"
|
|
1017
1043
|
source = { registry = "https://pypi.org/simple" }
|
|
1018
1044
|
resolution-markers = [
|
|
1019
1045
|
"python_full_version >= '3.13'",
|
|
@@ -1022,45 +1048,72 @@ resolution-markers = [
|
|
|
1022
1048
|
"python_full_version == '3.10.*'",
|
|
1023
1049
|
]
|
|
1024
1050
|
dependencies = [
|
|
1025
|
-
{ name = "astroid", version = "4.0.
|
|
1051
|
+
{ name = "astroid", version = "4.0.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
1026
1052
|
{ name = "colorama", marker = "python_full_version >= '3.10' and sys_platform == 'win32'" },
|
|
1027
1053
|
{ name = "dill", marker = "python_full_version >= '3.10'" },
|
|
1028
1054
|
{ name = "isort", version = "7.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
1029
1055
|
{ name = "mccabe", marker = "python_full_version >= '3.10'" },
|
|
1030
|
-
{ name = "platformdirs", version = "4.5.
|
|
1056
|
+
{ name = "platformdirs", version = "4.5.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
1031
1057
|
{ name = "tomli", marker = "python_full_version == '3.10.*'" },
|
|
1032
1058
|
{ name = "tomlkit", marker = "python_full_version >= '3.10'" },
|
|
1033
1059
|
]
|
|
1034
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1060
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/d2/b081da1a8930d00e3fc06352a1d449aaf815d4982319fab5d8cdb2e9ab35/pylint-4.0.4.tar.gz", hash = "sha256:d9b71674e19b1c36d79265b5887bf8e55278cbe236c9e95d22dc82cf044fdbd2", size = 1571735, upload-time = "2025-11-30T13:29:04.315Z" }
|
|
1035
1061
|
wheels = [
|
|
1036
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1062
|
+
{ url = "https://files.pythonhosted.org/packages/a6/92/d40f5d937517cc489ad848fc4414ecccc7592e4686b9071e09e64f5e378e/pylint-4.0.4-py3-none-any.whl", hash = "sha256:63e06a37d5922555ee2c20963eb42559918c20bd2b21244e4ef426e7c43b92e0", size = 536425, upload-time = "2025-11-30T13:29:02.53Z" },
|
|
1037
1063
|
]
|
|
1038
1064
|
|
|
1039
1065
|
[[package]]
|
|
1040
1066
|
name = "pytest"
|
|
1041
1067
|
version = "8.4.2"
|
|
1042
1068
|
source = { registry = "https://pypi.org/simple" }
|
|
1069
|
+
resolution-markers = [
|
|
1070
|
+
"python_full_version < '3.10'",
|
|
1071
|
+
]
|
|
1043
1072
|
dependencies = [
|
|
1044
|
-
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
1045
|
-
{ name = "exceptiongroup", marker = "python_full_version < '3.
|
|
1073
|
+
{ name = "colorama", marker = "python_full_version < '3.10' and sys_platform == 'win32'" },
|
|
1074
|
+
{ name = "exceptiongroup", marker = "python_full_version < '3.10'" },
|
|
1046
1075
|
{ name = "iniconfig", version = "2.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
1047
|
-
{ name = "
|
|
1048
|
-
{ name = "
|
|
1049
|
-
{ name = "
|
|
1050
|
-
{ name = "
|
|
1051
|
-
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
|
1076
|
+
{ name = "packaging", marker = "python_full_version < '3.10'" },
|
|
1077
|
+
{ name = "pluggy", marker = "python_full_version < '3.10'" },
|
|
1078
|
+
{ name = "pygments", marker = "python_full_version < '3.10'" },
|
|
1079
|
+
{ name = "tomli", marker = "python_full_version < '3.10'" },
|
|
1052
1080
|
]
|
|
1053
1081
|
sdist = { url = "https://files.pythonhosted.org/packages/a3/5c/00a0e072241553e1a7496d638deababa67c5058571567b92a7eaa258397c/pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01", size = 1519618, upload-time = "2025-09-04T14:34:22.711Z" }
|
|
1054
1082
|
wheels = [
|
|
1055
1083
|
{ url = "https://files.pythonhosted.org/packages/a8/a4/20da314d277121d6534b3a980b29035dcd51e6744bd79075a6ce8fa4eb8d/pytest-8.4.2-py3-none-any.whl", hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79", size = 365750, upload-time = "2025-09-04T14:34:20.226Z" },
|
|
1056
1084
|
]
|
|
1057
1085
|
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "pytest"
|
|
1088
|
+
version = "9.0.2"
|
|
1089
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1090
|
+
resolution-markers = [
|
|
1091
|
+
"python_full_version >= '3.13'",
|
|
1092
|
+
"python_full_version == '3.12.*'",
|
|
1093
|
+
"python_full_version == '3.11.*'",
|
|
1094
|
+
"python_full_version == '3.10.*'",
|
|
1095
|
+
]
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
{ name = "colorama", marker = "python_full_version >= '3.10' and sys_platform == 'win32'" },
|
|
1098
|
+
{ name = "exceptiongroup", marker = "python_full_version == '3.10.*'" },
|
|
1099
|
+
{ name = "iniconfig", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
1100
|
+
{ name = "packaging", marker = "python_full_version >= '3.10'" },
|
|
1101
|
+
{ name = "pluggy", marker = "python_full_version >= '3.10'" },
|
|
1102
|
+
{ name = "pygments", marker = "python_full_version >= '3.10'" },
|
|
1103
|
+
{ name = "tomli", marker = "python_full_version == '3.10.*'" },
|
|
1104
|
+
]
|
|
1105
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" }
|
|
1106
|
+
wheels = [
|
|
1107
|
+
{ url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" },
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1058
1110
|
[[package]]
|
|
1059
1111
|
name = "pytest-dotenv"
|
|
1060
1112
|
version = "0.5.2"
|
|
1061
1113
|
source = { registry = "https://pypi.org/simple" }
|
|
1062
1114
|
dependencies = [
|
|
1063
|
-
{ name = "pytest" },
|
|
1115
|
+
{ name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
1116
|
+
{ name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
1064
1117
|
{ name = "python-dotenv" },
|
|
1065
1118
|
]
|
|
1066
1119
|
sdist = { url = "https://files.pythonhosted.org/packages/cd/b0/cafee9c627c1bae228eb07c9977f679b3a7cb111b488307ab9594ba9e4da/pytest-dotenv-0.5.2.tar.gz", hash = "sha256:2dc6c3ac6d8764c71c6d2804e902d0ff810fa19692e95fe138aefc9b1aa73732", size = 3782, upload-time = "2020-06-16T12:38:03.4Z" }
|
|
@@ -1211,15 +1264,6 @@ wheels = [
|
|
|
1211
1264
|
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
|
|
1212
1265
|
]
|
|
1213
1266
|
|
|
1214
|
-
[[package]]
|
|
1215
|
-
name = "sniffio"
|
|
1216
|
-
version = "1.3.1"
|
|
1217
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1218
|
-
sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" }
|
|
1219
|
-
wheels = [
|
|
1220
|
-
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" },
|
|
1221
|
-
]
|
|
1222
|
-
|
|
1223
1267
|
[[package]]
|
|
1224
1268
|
name = "stack-data"
|
|
1225
1269
|
version = "0.6.3"
|
|
@@ -1294,21 +1338,21 @@ wheels = [
|
|
|
1294
1338
|
|
|
1295
1339
|
[[package]]
|
|
1296
1340
|
name = "tornado"
|
|
1297
|
-
version = "6.5.
|
|
1298
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1299
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1300
|
-
wheels = [
|
|
1301
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1302
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1303
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1304
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1305
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1307
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1308
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1309
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1310
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1311
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1341
|
+
version = "6.5.4"
|
|
1342
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1343
|
+
sdist = { url = "https://files.pythonhosted.org/packages/37/1d/0a336abf618272d53f62ebe274f712e213f5a03c0b2339575430b8362ef2/tornado-6.5.4.tar.gz", hash = "sha256:a22fa9047405d03260b483980635f0b041989d8bcc9a313f8fe18b411d84b1d7", size = 513632, upload-time = "2025-12-15T19:21:03.836Z" }
|
|
1344
|
+
wheels = [
|
|
1345
|
+
{ url = "https://files.pythonhosted.org/packages/ab/a9/e94a9d5224107d7ce3cc1fab8d5dc97f5ea351ccc6322ee4fb661da94e35/tornado-6.5.4-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d6241c1a16b1c9e4cc28148b1cda97dd1c6cb4fb7068ac1bedc610768dff0ba9", size = 443909, upload-time = "2025-12-15T19:20:48.382Z" },
|
|
1346
|
+
{ url = "https://files.pythonhosted.org/packages/db/7e/f7b8d8c4453f305a51f80dbb49014257bb7d28ccb4bbb8dd328ea995ecad/tornado-6.5.4-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2d50f63dda1d2cac3ae1fa23d254e16b5e38153758470e9956cbc3d813d40843", size = 442163, upload-time = "2025-12-15T19:20:49.791Z" },
|
|
1347
|
+
{ url = "https://files.pythonhosted.org/packages/ba/b5/206f82d51e1bfa940ba366a8d2f83904b15942c45a78dd978b599870ab44/tornado-6.5.4-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1cf66105dc6acb5af613c054955b8137e34a03698aa53272dbda4afe252be17", size = 445746, upload-time = "2025-12-15T19:20:51.491Z" },
|
|
1348
|
+
{ url = "https://files.pythonhosted.org/packages/8e/9d/1a3338e0bd30ada6ad4356c13a0a6c35fbc859063fa7eddb309183364ac1/tornado-6.5.4-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50ff0a58b0dc97939d29da29cd624da010e7f804746621c78d14b80238669335", size = 445083, upload-time = "2025-12-15T19:20:52.778Z" },
|
|
1349
|
+
{ url = "https://files.pythonhosted.org/packages/50/d4/e51d52047e7eb9a582da59f32125d17c0482d065afd5d3bc435ff2120dc5/tornado-6.5.4-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fb5e04efa54cf0baabdd10061eb4148e0be137166146fff835745f59ab9f7f", size = 445315, upload-time = "2025-12-15T19:20:53.996Z" },
|
|
1350
|
+
{ url = "https://files.pythonhosted.org/packages/27/07/2273972f69ca63dbc139694a3fc4684edec3ea3f9efabf77ed32483b875c/tornado-6.5.4-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9c86b1643b33a4cd415f8d0fe53045f913bf07b4a3ef646b735a6a86047dda84", size = 446003, upload-time = "2025-12-15T19:20:56.101Z" },
|
|
1351
|
+
{ url = "https://files.pythonhosted.org/packages/d1/83/41c52e47502bf7260044413b6770d1a48dda2f0246f95ee1384a3cd9c44a/tornado-6.5.4-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:6eb82872335a53dd063a4f10917b3efd28270b56a33db69009606a0312660a6f", size = 445412, upload-time = "2025-12-15T19:20:57.398Z" },
|
|
1352
|
+
{ url = "https://files.pythonhosted.org/packages/10/c7/bc96917f06cbee182d44735d4ecde9c432e25b84f4c2086143013e7b9e52/tornado-6.5.4-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6076d5dda368c9328ff41ab5d9dd3608e695e8225d1cd0fd1e006f05da3635a8", size = 445392, upload-time = "2025-12-15T19:20:58.692Z" },
|
|
1353
|
+
{ url = "https://files.pythonhosted.org/packages/0c/1a/d7592328d037d36f2d2462f4bc1fbb383eec9278bc786c1b111cbbd44cfa/tornado-6.5.4-cp39-abi3-win32.whl", hash = "sha256:1768110f2411d5cd281bac0a090f707223ce77fd110424361092859e089b38d1", size = 446481, upload-time = "2025-12-15T19:21:00.008Z" },
|
|
1354
|
+
{ url = "https://files.pythonhosted.org/packages/d6/6d/c69be695a0a64fd37a97db12355a035a6d90f79067a3cf936ec2b1dc38cd/tornado-6.5.4-cp39-abi3-win_amd64.whl", hash = "sha256:fa07d31e0cd85c60713f2b995da613588aa03e1303d75705dca6af8babc18ddc", size = 446886, upload-time = "2025-12-15T19:21:01.287Z" },
|
|
1355
|
+
{ url = "https://files.pythonhosted.org/packages/50/49/8dc3fd90902f70084bd2cd059d576ddb4f8bb44c2c7c0e33a11422acb17e/tornado-6.5.4-cp39-abi3-win_arm64.whl", hash = "sha256:053e6e16701eb6cbe641f308f4c1a9541f91b6261991160391bfc342e8a551a1", size = 445910, upload-time = "2025-12-15T19:21:02.571Z" },
|
|
1312
1356
|
]
|
|
1313
1357
|
|
|
1314
1358
|
[[package]]
|