fotolab 0.18.2__tar.gz → 0.18.3__tar.gz
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.
- {fotolab-0.18.2 → fotolab-0.18.3}/.pre-commit-config.yaml +2 -2
- {fotolab-0.18.2 → fotolab-0.18.3}/.python-version +1 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/CHANGELOG.md +5 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/CONTRIBUTING.md +1 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/PKG-INFO +1 -1
- {fotolab-0.18.2 → fotolab-0.18.3}/Pipfile.lock +286 -296
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/__init__.py +1 -1
- {fotolab-0.18.2 → fotolab-0.18.3}/noxfile.py +1 -1
- {fotolab-0.18.2 → fotolab-0.18.3}/.coveragerc +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/.gitignore +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/LICENSE.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/Pipfile +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/README.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/Makefile +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/make.bat +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/CHANGELOG.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/CONTRIBUTING.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/LICENSE.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/README.md +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/_static/logo.jpg +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/conf.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/docs/source/index.rst +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/__main__.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/animate.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/auto.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/border.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/cli.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/contrast.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/env.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/info.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/montage.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/resize.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/rotate.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/sharpen.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/fotolab/watermark.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/pyproject.toml +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/tests/__init__.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/tests/conftest.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/tests/test_env.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/tests/test_help_flag.py +0 -0
- {fotolab-0.18.2 → fotolab-0.18.3}/tests/test_quiet_flag.py +0 -0
@@ -15,7 +15,7 @@ repos:
|
|
15
15
|
- id: trailing-whitespace
|
16
16
|
|
17
17
|
- repo: https://github.com/abravalheri/validate-pyproject
|
18
|
-
rev: v0.
|
18
|
+
rev: v0.21
|
19
19
|
hooks:
|
20
20
|
- id: validate-pyproject
|
21
21
|
name: validate-pyproject
|
@@ -107,7 +107,7 @@ repos:
|
|
107
107
|
- --disable=R0801,W0212
|
108
108
|
|
109
109
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
110
|
-
rev: v1.
|
110
|
+
rev: v1.12.0
|
111
111
|
hooks:
|
112
112
|
- id: mypy
|
113
113
|
exclude: docs/
|
@@ -7,6 +7,11 @@ and this project adheres to [0-based versioning](https://0ver.org/).
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## v0.18.3 (2024-10-20)
|
11
|
+
|
12
|
+
- Bump deps and `pre-commit` hooks
|
13
|
+
- Support Python 3.13.0 in `pyenv` and `nox`
|
14
|
+
|
10
15
|
## v0.18.2 (2024-10-13)
|
11
16
|
|
12
17
|
- Bump deps and `pre-commit` hooks
|
@@ -18,90 +18,85 @@
|
|
18
18
|
"default": {
|
19
19
|
"pillow": {
|
20
20
|
"hashes": [
|
21
|
-
"sha256:
|
22
|
-
"sha256:
|
23
|
-
"sha256:
|
24
|
-
"sha256:
|
25
|
-
"sha256:
|
26
|
-
"sha256:
|
27
|
-
"sha256:
|
28
|
-
"sha256:
|
29
|
-
"sha256:
|
30
|
-
"sha256:
|
31
|
-
"sha256:
|
32
|
-
"sha256:
|
33
|
-
"sha256:
|
34
|
-
"sha256:
|
35
|
-
"sha256:
|
36
|
-
"sha256:
|
37
|
-
"sha256:
|
38
|
-
"sha256:
|
39
|
-
"sha256:
|
40
|
-
"sha256:
|
41
|
-
"sha256:
|
42
|
-
"sha256:
|
43
|
-
"sha256:
|
44
|
-
"sha256:
|
45
|
-
"sha256:
|
46
|
-
"sha256:
|
47
|
-
"sha256:
|
48
|
-
"sha256:
|
49
|
-
"sha256:
|
50
|
-
"sha256:
|
51
|
-
"sha256:
|
52
|
-
"sha256:
|
53
|
-
"sha256:
|
54
|
-
"sha256:
|
55
|
-
"sha256:
|
56
|
-
"sha256:
|
57
|
-
"sha256:
|
58
|
-
"sha256:
|
59
|
-
"sha256:
|
60
|
-
"sha256:
|
61
|
-
"sha256:
|
62
|
-
"sha256:
|
63
|
-
"sha256:
|
64
|
-
"sha256:
|
65
|
-
"sha256:
|
66
|
-
"sha256:
|
67
|
-
"sha256:
|
68
|
-
"sha256:
|
69
|
-
"sha256:
|
70
|
-
"sha256:
|
71
|
-
"sha256:
|
72
|
-
"sha256:
|
73
|
-
"sha256:
|
74
|
-
"sha256:
|
75
|
-
"sha256:
|
76
|
-
"sha256:
|
77
|
-
"sha256:
|
78
|
-
"sha256:
|
79
|
-
"sha256:
|
80
|
-
"sha256:
|
81
|
-
"sha256:
|
82
|
-
"sha256:
|
83
|
-
"sha256:
|
84
|
-
"sha256:
|
85
|
-
"sha256:
|
86
|
-
"sha256:
|
87
|
-
"sha256:
|
88
|
-
"sha256:
|
89
|
-
"sha256:
|
90
|
-
"sha256:
|
91
|
-
"sha256:
|
92
|
-
"sha256:
|
93
|
-
"sha256:
|
94
|
-
"sha256:
|
95
|
-
"sha256:
|
96
|
-
"sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef",
|
97
|
-
"sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22",
|
98
|
-
"sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27",
|
99
|
-
"sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e",
|
100
|
-
"sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"
|
21
|
+
"sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7",
|
22
|
+
"sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5",
|
23
|
+
"sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903",
|
24
|
+
"sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2",
|
25
|
+
"sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38",
|
26
|
+
"sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2",
|
27
|
+
"sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9",
|
28
|
+
"sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f",
|
29
|
+
"sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc",
|
30
|
+
"sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8",
|
31
|
+
"sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d",
|
32
|
+
"sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2",
|
33
|
+
"sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316",
|
34
|
+
"sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a",
|
35
|
+
"sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25",
|
36
|
+
"sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd",
|
37
|
+
"sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba",
|
38
|
+
"sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc",
|
39
|
+
"sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273",
|
40
|
+
"sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa",
|
41
|
+
"sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a",
|
42
|
+
"sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b",
|
43
|
+
"sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a",
|
44
|
+
"sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae",
|
45
|
+
"sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291",
|
46
|
+
"sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97",
|
47
|
+
"sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06",
|
48
|
+
"sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904",
|
49
|
+
"sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b",
|
50
|
+
"sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b",
|
51
|
+
"sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8",
|
52
|
+
"sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527",
|
53
|
+
"sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947",
|
54
|
+
"sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb",
|
55
|
+
"sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003",
|
56
|
+
"sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5",
|
57
|
+
"sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f",
|
58
|
+
"sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739",
|
59
|
+
"sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944",
|
60
|
+
"sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830",
|
61
|
+
"sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f",
|
62
|
+
"sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3",
|
63
|
+
"sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4",
|
64
|
+
"sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84",
|
65
|
+
"sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7",
|
66
|
+
"sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6",
|
67
|
+
"sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6",
|
68
|
+
"sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9",
|
69
|
+
"sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de",
|
70
|
+
"sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4",
|
71
|
+
"sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47",
|
72
|
+
"sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd",
|
73
|
+
"sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50",
|
74
|
+
"sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c",
|
75
|
+
"sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086",
|
76
|
+
"sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba",
|
77
|
+
"sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306",
|
78
|
+
"sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699",
|
79
|
+
"sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e",
|
80
|
+
"sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488",
|
81
|
+
"sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa",
|
82
|
+
"sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2",
|
83
|
+
"sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3",
|
84
|
+
"sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9",
|
85
|
+
"sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923",
|
86
|
+
"sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2",
|
87
|
+
"sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790",
|
88
|
+
"sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734",
|
89
|
+
"sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916",
|
90
|
+
"sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1",
|
91
|
+
"sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f",
|
92
|
+
"sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798",
|
93
|
+
"sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb",
|
94
|
+
"sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2",
|
95
|
+
"sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"
|
101
96
|
],
|
102
97
|
"index": "pypi",
|
103
|
-
"markers": "python_version >= '3.
|
104
|
-
"version": "==
|
98
|
+
"markers": "python_version >= '3.9'",
|
99
|
+
"version": "==11.0.0"
|
105
100
|
}
|
106
101
|
},
|
107
102
|
"develop": {
|
@@ -277,71 +272,71 @@
|
|
277
272
|
"toml"
|
278
273
|
],
|
279
274
|
"hashes": [
|
280
|
-
"sha256:
|
281
|
-
"sha256:
|
282
|
-
"sha256:
|
283
|
-
"sha256:
|
284
|
-
"sha256:
|
285
|
-
"sha256:
|
286
|
-
"sha256:
|
287
|
-
"sha256:
|
288
|
-
"sha256:
|
289
|
-
"sha256:
|
290
|
-
"sha256:
|
291
|
-
"sha256:
|
292
|
-
"sha256:
|
293
|
-
"sha256:
|
294
|
-
"sha256:
|
295
|
-
"sha256:
|
296
|
-
"sha256:
|
297
|
-
"sha256:
|
298
|
-
"sha256:
|
299
|
-
"sha256:
|
300
|
-
"sha256:
|
301
|
-
"sha256:
|
302
|
-
"sha256:
|
303
|
-
"sha256:
|
304
|
-
"sha256:
|
305
|
-
"sha256:
|
306
|
-
"sha256:
|
307
|
-
"sha256:
|
308
|
-
"sha256:
|
309
|
-
"sha256:
|
310
|
-
"sha256:
|
311
|
-
"sha256:
|
312
|
-
"sha256:
|
313
|
-
"sha256:
|
314
|
-
"sha256:
|
315
|
-
"sha256:
|
316
|
-
"sha256:
|
317
|
-
"sha256:
|
318
|
-
"sha256:
|
319
|
-
"sha256:
|
320
|
-
"sha256:
|
321
|
-
"sha256:
|
322
|
-
"sha256:
|
323
|
-
"sha256:
|
324
|
-
"sha256:
|
325
|
-
"sha256:
|
326
|
-
"sha256:
|
327
|
-
"sha256:
|
328
|
-
"sha256:
|
329
|
-
"sha256:
|
330
|
-
"sha256:
|
331
|
-
"sha256:
|
332
|
-
"sha256:
|
333
|
-
"sha256:
|
334
|
-
"sha256:
|
335
|
-
"sha256:
|
336
|
-
"sha256:
|
337
|
-
"sha256:
|
338
|
-
"sha256:
|
339
|
-
"sha256:
|
340
|
-
"sha256:
|
341
|
-
"sha256:
|
275
|
+
"sha256:04f2189716e85ec9192df307f7c255f90e78b6e9863a03223c3b998d24a3c6c6",
|
276
|
+
"sha256:0c6c0f4d53ef603397fc894a895b960ecd7d44c727df42a8d500031716d4e8d2",
|
277
|
+
"sha256:0ca37993206402c6c35dc717f90d4c8f53568a8b80f0bf1a1b2b334f4d488fba",
|
278
|
+
"sha256:12f9515d875859faedb4144fd38694a761cd2a61ef9603bf887b13956d0bbfbb",
|
279
|
+
"sha256:1990b1f4e2c402beb317840030bb9f1b6a363f86e14e21b4212e618acdfce7f6",
|
280
|
+
"sha256:2341a78ae3a5ed454d524206a3fcb3cec408c2a0c7c2752cd78b606a2ff15af4",
|
281
|
+
"sha256:23bb63ae3f4c645d2d82fa22697364b0046fbafb6261b258a58587441c5f7bd0",
|
282
|
+
"sha256:27bd5f18d8f2879e45724b0ce74f61811639a846ff0e5c0395b7818fae87aec6",
|
283
|
+
"sha256:2dc7d6b380ca76f5e817ac9eef0c3686e7834c8346bef30b041a4ad286449990",
|
284
|
+
"sha256:331b200ad03dbaa44151d74daeb7da2cf382db424ab923574f6ecca7d3b30de3",
|
285
|
+
"sha256:365defc257c687ce3e7d275f39738dcd230777424117a6c76043459db131dd43",
|
286
|
+
"sha256:37be7b5ea3ff5b7c4a9db16074dc94523b5f10dd1f3b362a827af66a55198175",
|
287
|
+
"sha256:3c2e6fa98032fec8282f6b27e3f3986c6e05702828380618776ad794e938f53a",
|
288
|
+
"sha256:40e8b1983080439d4802d80b951f4a93d991ef3261f69e81095a66f86cf3c3c6",
|
289
|
+
"sha256:43517e1f6b19f610a93d8227e47790722c8bf7422e46b365e0469fc3d3563d97",
|
290
|
+
"sha256:43b32a06c47539fe275106b376658638b418c7cfdfff0e0259fbf877e845f14b",
|
291
|
+
"sha256:43d6a66e33b1455b98fc7312b124296dad97a2e191c80320587234a77b1b736e",
|
292
|
+
"sha256:4c59d6a4a4633fad297f943c03d0d2569867bd5372eb5684befdff8df8522e39",
|
293
|
+
"sha256:52ac29cc72ee7e25ace7807249638f94c9b6a862c56b1df015d2b2e388e51dbd",
|
294
|
+
"sha256:54356a76b67cf8a3085818026bb556545ebb8353951923b88292556dfa9f812d",
|
295
|
+
"sha256:583049c63106c0555e3ae3931edab5669668bbef84c15861421b94e121878d3f",
|
296
|
+
"sha256:6d99198203f0b9cb0b5d1c0393859555bc26b548223a769baf7e321a627ed4fc",
|
297
|
+
"sha256:6da42bbcec130b188169107ecb6ee7bd7b4c849d24c9370a0c884cf728d8e976",
|
298
|
+
"sha256:6e484e479860e00da1f005cd19d1c5d4a813324e5951319ac3f3eefb497cc549",
|
299
|
+
"sha256:70a6756ce66cd6fe8486c775b30889f0dc4cb20c157aa8c35b45fd7868255c5c",
|
300
|
+
"sha256:70d24936ca6c15a3bbc91ee9c7fc661132c6f4c9d42a23b31b6686c05073bde5",
|
301
|
+
"sha256:71967c35828c9ff94e8c7d405469a1fb68257f686bca7c1ed85ed34e7c2529c4",
|
302
|
+
"sha256:79644f68a6ff23b251cae1c82b01a0b51bc40c8468ca9585c6c4b1aeee570e0b",
|
303
|
+
"sha256:87cd2e29067ea397a47e352efb13f976eb1b03e18c999270bb50589323294c6e",
|
304
|
+
"sha256:8d4c6ea0f498c7c79111033a290d060c517853a7bcb2f46516f591dab628ddd3",
|
305
|
+
"sha256:9134032f5aa445ae591c2ba6991d10136a1f533b1d2fa8f8c21126468c5025c6",
|
306
|
+
"sha256:921fbe13492caf6a69528f09d5d7c7d518c8d0e7b9f6701b7719715f29a71e6e",
|
307
|
+
"sha256:99670790f21a96665a35849990b1df447993880bb6463a0a1d757897f30da929",
|
308
|
+
"sha256:9975442f2e7a5cfcf87299c26b5a45266ab0696348420049b9b94b2ad3d40234",
|
309
|
+
"sha256:99ded130555c021d99729fabd4ddb91a6f4cc0707df4b1daf912c7850c373b13",
|
310
|
+
"sha256:a3328c3e64ea4ab12b85999eb0779e6139295bbf5485f69d42cf794309e3d007",
|
311
|
+
"sha256:a4fb91d5f72b7e06a14ff4ae5be625a81cd7e5f869d7a54578fc271d08d58ae3",
|
312
|
+
"sha256:aa23ce39661a3e90eea5f99ec59b763b7d655c2cada10729ed920a38bfc2b167",
|
313
|
+
"sha256:aac7501ae73d4a02f4b7ac8fcb9dc55342ca98ffb9ed9f2dfb8a25d53eda0e4d",
|
314
|
+
"sha256:ab84a8b698ad5a6c365b08061920138e7a7dd9a04b6feb09ba1bfae68346ce6d",
|
315
|
+
"sha256:b4adeb878a374126f1e5cf03b87f66279f479e01af0e9a654cf6d1509af46c40",
|
316
|
+
"sha256:b9853509b4bf57ba7b1f99b9d866c422c9c5248799ab20e652bbb8a184a38181",
|
317
|
+
"sha256:bb7d5fe92bd0dc235f63ebe9f8c6e0884f7360f88f3411bfed1350c872ef2054",
|
318
|
+
"sha256:bca4c8abc50d38f9773c1ec80d43f3768df2e8576807d1656016b9d3eeaa96fd",
|
319
|
+
"sha256:c222958f59b0ae091f4535851cbb24eb57fc0baea07ba675af718fb5302dddb2",
|
320
|
+
"sha256:c30e42ea11badb147f0d2e387115b15e2bd8205a5ad70d6ad79cf37f6ac08c91",
|
321
|
+
"sha256:c3a79f56dee9136084cf84a6c7c4341427ef36e05ae6415bf7d787c96ff5eaa3",
|
322
|
+
"sha256:c51ef82302386d686feea1c44dbeef744585da16fcf97deea2a8d6c1556f519b",
|
323
|
+
"sha256:c77326300b839c44c3e5a8fe26c15b7e87b2f32dfd2fc9fee1d13604347c9b38",
|
324
|
+
"sha256:d33a785ea8354c480515e781554d3be582a86297e41ccbea627a5c632647f2cd",
|
325
|
+
"sha256:d546cfa78844b8b9c1c0533de1851569a13f87449897bbc95d698d1d3cb2a30f",
|
326
|
+
"sha256:da29ceabe3025a1e5a5aeeb331c5b1af686daab4ff0fb4f83df18b1180ea83e2",
|
327
|
+
"sha256:df8c05a0f574d480947cba11b947dc41b1265d721c3777881da2fb8d3a1ddfba",
|
328
|
+
"sha256:e266af4da2c1a4cbc6135a570c64577fd3e6eb204607eaff99d8e9b710003c6f",
|
329
|
+
"sha256:e279f3db904e3b55f520f11f983cc8dc8a4ce9b65f11692d4718ed021ec58b83",
|
330
|
+
"sha256:ea52bd218d4ba260399a8ae4bb6b577d82adfc4518b93566ce1fddd4a49d1dce",
|
331
|
+
"sha256:ebec65f5068e7df2d49466aab9128510c4867e532e07cb6960075b27658dca38",
|
332
|
+
"sha256:ec1e3b40b82236d100d259854840555469fad4db64f669ab817279eb95cd535c",
|
333
|
+
"sha256:ee77c7bef0724165e795b6b7bf9c4c22a9b8468a6bdb9c6b4281293c6b22a90f",
|
334
|
+
"sha256:f263b18692f8ed52c8de7f40a0751e79015983dbd77b16906e5b310a39d3ca21",
|
335
|
+
"sha256:f7b26757b22faf88fcf232f5f0e62f6e0fd9e22a8a5d0d5016888cdfe1f6c1c4",
|
336
|
+
"sha256:f7ddb920106bbbbcaf2a274d56f46956bf56ecbde210d88061824a95bdd94e92"
|
342
337
|
],
|
343
338
|
"markers": "python_version >= '3.9'",
|
344
|
-
"version": "==7.6.
|
339
|
+
"version": "==7.6.3"
|
345
340
|
},
|
346
341
|
"distlib": {
|
347
342
|
"hashes": [
|
@@ -498,70 +493,70 @@
|
|
498
493
|
},
|
499
494
|
"markupsafe": {
|
500
495
|
"hashes": [
|
501
|
-
"sha256:
|
502
|
-
"sha256:
|
503
|
-
"sha256:
|
504
|
-
"sha256:
|
505
|
-
"sha256:
|
506
|
-
"sha256:
|
507
|
-
"sha256:
|
508
|
-
"sha256:
|
509
|
-
"sha256:
|
510
|
-
"sha256:
|
511
|
-
"sha256:
|
512
|
-
"sha256:
|
513
|
-
"sha256:
|
514
|
-
"sha256:
|
515
|
-
"sha256:
|
516
|
-
"sha256:
|
517
|
-
"sha256:
|
518
|
-
"sha256:
|
519
|
-
"sha256:
|
520
|
-
"sha256:
|
521
|
-
"sha256:
|
522
|
-
"sha256:
|
523
|
-
"sha256:
|
524
|
-
"sha256:
|
525
|
-
"sha256:
|
526
|
-
"sha256:
|
527
|
-
"sha256:
|
528
|
-
"sha256:
|
529
|
-
"sha256:
|
530
|
-
"sha256:
|
531
|
-
"sha256:
|
532
|
-
"sha256:
|
533
|
-
"sha256:
|
534
|
-
"sha256:
|
535
|
-
"sha256:
|
536
|
-
"sha256:
|
537
|
-
"sha256:
|
538
|
-
"sha256:
|
539
|
-
"sha256:
|
540
|
-
"sha256:
|
541
|
-
"sha256:
|
542
|
-
"sha256:
|
543
|
-
"sha256:
|
544
|
-
"sha256:
|
545
|
-
"sha256:
|
546
|
-
"sha256:
|
547
|
-
"sha256:
|
548
|
-
"sha256:
|
549
|
-
"sha256:
|
550
|
-
"sha256:
|
551
|
-
"sha256:
|
552
|
-
"sha256:
|
553
|
-
"sha256:
|
554
|
-
"sha256:
|
555
|
-
"sha256:
|
556
|
-
"sha256:
|
557
|
-
"sha256:
|
558
|
-
"sha256:
|
559
|
-
"sha256:
|
560
|
-
"sha256:
|
561
|
-
"sha256:
|
496
|
+
"sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4",
|
497
|
+
"sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30",
|
498
|
+
"sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0",
|
499
|
+
"sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9",
|
500
|
+
"sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396",
|
501
|
+
"sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13",
|
502
|
+
"sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028",
|
503
|
+
"sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca",
|
504
|
+
"sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557",
|
505
|
+
"sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832",
|
506
|
+
"sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0",
|
507
|
+
"sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b",
|
508
|
+
"sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579",
|
509
|
+
"sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a",
|
510
|
+
"sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c",
|
511
|
+
"sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff",
|
512
|
+
"sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c",
|
513
|
+
"sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22",
|
514
|
+
"sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094",
|
515
|
+
"sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb",
|
516
|
+
"sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e",
|
517
|
+
"sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5",
|
518
|
+
"sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a",
|
519
|
+
"sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d",
|
520
|
+
"sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a",
|
521
|
+
"sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b",
|
522
|
+
"sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8",
|
523
|
+
"sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225",
|
524
|
+
"sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c",
|
525
|
+
"sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144",
|
526
|
+
"sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f",
|
527
|
+
"sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87",
|
528
|
+
"sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d",
|
529
|
+
"sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93",
|
530
|
+
"sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf",
|
531
|
+
"sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158",
|
532
|
+
"sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84",
|
533
|
+
"sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb",
|
534
|
+
"sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48",
|
535
|
+
"sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171",
|
536
|
+
"sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c",
|
537
|
+
"sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6",
|
538
|
+
"sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd",
|
539
|
+
"sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d",
|
540
|
+
"sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1",
|
541
|
+
"sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d",
|
542
|
+
"sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca",
|
543
|
+
"sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a",
|
544
|
+
"sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29",
|
545
|
+
"sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe",
|
546
|
+
"sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798",
|
547
|
+
"sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c",
|
548
|
+
"sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8",
|
549
|
+
"sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f",
|
550
|
+
"sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f",
|
551
|
+
"sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a",
|
552
|
+
"sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178",
|
553
|
+
"sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0",
|
554
|
+
"sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79",
|
555
|
+
"sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430",
|
556
|
+
"sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"
|
562
557
|
],
|
563
558
|
"markers": "python_version >= '3.9'",
|
564
|
-
"version": "==3.0.
|
559
|
+
"version": "==3.0.2"
|
565
560
|
},
|
566
561
|
"mccabe": {
|
567
562
|
"hashes": [
|
@@ -623,90 +618,85 @@
|
|
623
618
|
},
|
624
619
|
"pillow": {
|
625
620
|
"hashes": [
|
626
|
-
"sha256:
|
627
|
-
"sha256:
|
628
|
-
"sha256:
|
629
|
-
"sha256:
|
630
|
-
"sha256:
|
631
|
-
"sha256:
|
632
|
-
"sha256:
|
633
|
-
"sha256:
|
634
|
-
"sha256:
|
635
|
-
"sha256:
|
636
|
-
"sha256:
|
637
|
-
"sha256:
|
638
|
-
"sha256:
|
639
|
-
"sha256:
|
640
|
-
"sha256:
|
641
|
-
"sha256:
|
642
|
-
"sha256:
|
643
|
-
"sha256:
|
644
|
-
"sha256:
|
645
|
-
"sha256:
|
646
|
-
"sha256:
|
647
|
-
"sha256:
|
648
|
-
"sha256:
|
649
|
-
"sha256:
|
650
|
-
"sha256:
|
651
|
-
"sha256:
|
652
|
-
"sha256:
|
653
|
-
"sha256:
|
654
|
-
"sha256:
|
655
|
-
"sha256:
|
656
|
-
"sha256:
|
657
|
-
"sha256:
|
658
|
-
"sha256:
|
659
|
-
"sha256:
|
660
|
-
"sha256:
|
661
|
-
"sha256:
|
662
|
-
"sha256:
|
663
|
-
"sha256:
|
664
|
-
"sha256:
|
665
|
-
"sha256:
|
666
|
-
"sha256:
|
667
|
-
"sha256:
|
668
|
-
"sha256:
|
669
|
-
"sha256:
|
670
|
-
"sha256:
|
671
|
-
"sha256:
|
672
|
-
"sha256:
|
673
|
-
"sha256:
|
674
|
-
"sha256:
|
675
|
-
"sha256:
|
676
|
-
"sha256:
|
677
|
-
"sha256:
|
678
|
-
"sha256:
|
679
|
-
"sha256:
|
680
|
-
"sha256:
|
681
|
-
"sha256:
|
682
|
-
"sha256:
|
683
|
-
"sha256:
|
684
|
-
"sha256:
|
685
|
-
"sha256:
|
686
|
-
"sha256:
|
687
|
-
"sha256:
|
688
|
-
"sha256:
|
689
|
-
"sha256:
|
690
|
-
"sha256:
|
691
|
-
"sha256:
|
692
|
-
"sha256:
|
693
|
-
"sha256:
|
694
|
-
"sha256:
|
695
|
-
"sha256:
|
696
|
-
"sha256:
|
697
|
-
"sha256:
|
698
|
-
"sha256:
|
699
|
-
"sha256:
|
700
|
-
"sha256:
|
701
|
-
"sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef",
|
702
|
-
"sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22",
|
703
|
-
"sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27",
|
704
|
-
"sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e",
|
705
|
-
"sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"
|
621
|
+
"sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7",
|
622
|
+
"sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5",
|
623
|
+
"sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903",
|
624
|
+
"sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2",
|
625
|
+
"sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38",
|
626
|
+
"sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2",
|
627
|
+
"sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9",
|
628
|
+
"sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f",
|
629
|
+
"sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc",
|
630
|
+
"sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8",
|
631
|
+
"sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d",
|
632
|
+
"sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2",
|
633
|
+
"sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316",
|
634
|
+
"sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a",
|
635
|
+
"sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25",
|
636
|
+
"sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd",
|
637
|
+
"sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba",
|
638
|
+
"sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc",
|
639
|
+
"sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273",
|
640
|
+
"sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa",
|
641
|
+
"sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a",
|
642
|
+
"sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b",
|
643
|
+
"sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a",
|
644
|
+
"sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae",
|
645
|
+
"sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291",
|
646
|
+
"sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97",
|
647
|
+
"sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06",
|
648
|
+
"sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904",
|
649
|
+
"sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b",
|
650
|
+
"sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b",
|
651
|
+
"sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8",
|
652
|
+
"sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527",
|
653
|
+
"sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947",
|
654
|
+
"sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb",
|
655
|
+
"sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003",
|
656
|
+
"sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5",
|
657
|
+
"sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f",
|
658
|
+
"sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739",
|
659
|
+
"sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944",
|
660
|
+
"sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830",
|
661
|
+
"sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f",
|
662
|
+
"sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3",
|
663
|
+
"sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4",
|
664
|
+
"sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84",
|
665
|
+
"sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7",
|
666
|
+
"sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6",
|
667
|
+
"sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6",
|
668
|
+
"sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9",
|
669
|
+
"sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de",
|
670
|
+
"sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4",
|
671
|
+
"sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47",
|
672
|
+
"sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd",
|
673
|
+
"sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50",
|
674
|
+
"sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c",
|
675
|
+
"sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086",
|
676
|
+
"sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba",
|
677
|
+
"sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306",
|
678
|
+
"sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699",
|
679
|
+
"sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e",
|
680
|
+
"sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488",
|
681
|
+
"sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa",
|
682
|
+
"sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2",
|
683
|
+
"sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3",
|
684
|
+
"sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9",
|
685
|
+
"sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923",
|
686
|
+
"sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2",
|
687
|
+
"sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790",
|
688
|
+
"sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734",
|
689
|
+
"sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916",
|
690
|
+
"sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1",
|
691
|
+
"sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f",
|
692
|
+
"sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798",
|
693
|
+
"sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb",
|
694
|
+
"sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2",
|
695
|
+
"sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"
|
706
696
|
],
|
707
697
|
"index": "pypi",
|
708
|
-
"markers": "python_version >= '3.
|
709
|
-
"version": "==
|
698
|
+
"markers": "python_version >= '3.9'",
|
699
|
+
"version": "==11.0.0"
|
710
700
|
},
|
711
701
|
"platformdirs": {
|
712
702
|
"hashes": [
|
@@ -884,12 +874,12 @@
|
|
884
874
|
},
|
885
875
|
"sphinx": {
|
886
876
|
"hashes": [
|
887
|
-
"sha256:
|
888
|
-
"sha256:
|
877
|
+
"sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2",
|
878
|
+
"sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927"
|
889
879
|
],
|
890
880
|
"index": "pypi",
|
891
881
|
"markers": "python_version >= '3.10'",
|
892
|
-
"version": "==8.1.
|
882
|
+
"version": "==8.1.3"
|
893
883
|
},
|
894
884
|
"sphinx-autodoc-typehints": {
|
895
885
|
"hashes": [
|
@@ -976,11 +966,11 @@
|
|
976
966
|
},
|
977
967
|
"virtualenv": {
|
978
968
|
"hashes": [
|
979
|
-
"sha256:
|
980
|
-
"sha256:
|
969
|
+
"sha256:2ca56a68ed615b8fe4326d11a0dca5dfbe8fd68510fb6c6349163bed3c15f2b2",
|
970
|
+
"sha256:44a72c29cceb0ee08f300b314848c86e57bf8d1f13107a5e671fb9274138d655"
|
981
971
|
],
|
982
|
-
"markers": "python_version >= '3.
|
983
|
-
"version": "==20.
|
972
|
+
"markers": "python_version >= '3.8'",
|
973
|
+
"version": "==20.27.0"
|
984
974
|
},
|
985
975
|
"zipp": {
|
986
976
|
"hashes": [
|
@@ -45,7 +45,7 @@ def lint(session: nox.Session) -> None:
|
|
45
45
|
session.run("pre-commit", "run", "--all-files", *session.posargs)
|
46
46
|
|
47
47
|
|
48
|
-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
|
48
|
+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
|
49
49
|
def test(session: nox.Session) -> None:
|
50
50
|
"""Run test."""
|
51
51
|
_pipenv_install(session)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|