locust 2.31.6.dev2__py3-none-any.whl → 2.31.6.dev4__py3-none-any.whl
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.
- locust/_version.py +2 -2
- locust/clients.py +1 -1
- locust/contrib/fasthttp.py +2 -4
- locust/dispatch.py +4 -4
- locust/event.py +1 -1
- {locust-2.31.6.dev2.dist-info → locust-2.31.6.dev4.dist-info}/METADATA +1 -1
- {locust-2.31.6.dev2.dist-info → locust-2.31.6.dev4.dist-info}/RECORD +11 -11
- poetry.lock +93 -85
- {locust-2.31.6.dev2.dist-info → locust-2.31.6.dev4.dist-info}/LICENSE +0 -0
- {locust-2.31.6.dev2.dist-info → locust-2.31.6.dev4.dist-info}/WHEEL +0 -0
- {locust-2.31.6.dev2.dist-info → locust-2.31.6.dev4.dist-info}/entry_points.txt +0 -0
locust/_version.py
CHANGED
@@ -14,7 +14,7 @@ __version_tuple__: VERSION_TUPLE
|
|
14
14
|
version_tuple: VERSION_TUPLE
|
15
15
|
|
16
16
|
|
17
|
-
__version__ = "2.31.6.
|
17
|
+
__version__ = "2.31.6.dev4"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 31, 6, "
|
19
|
+
__version_tuple__ = (2, 31, 6, "dev4")
|
20
20
|
version_tuple = __version_tuple__
|
locust/clients.py
CHANGED
@@ -122,7 +122,7 @@ class HttpSession(requests.Session):
|
|
122
122
|
return f"{self.base_url}{path}"
|
123
123
|
|
124
124
|
@contextmanager
|
125
|
-
def rename_request(self, name: str) -> Generator[None
|
125
|
+
def rename_request(self, name: str) -> Generator[None]:
|
126
126
|
"""Group requests using the "with" keyword"""
|
127
127
|
|
128
128
|
self.request_name = name
|
locust/contrib/fasthttp.py
CHANGED
@@ -407,9 +407,7 @@ class FastHttpUser(User):
|
|
407
407
|
"""
|
408
408
|
|
409
409
|
@contextmanager
|
410
|
-
def rest(
|
411
|
-
self, method, url, headers: dict | None = None, **kwargs
|
412
|
-
) -> Generator[RestResponseContextManager, None, None]:
|
410
|
+
def rest(self, method, url, headers: dict | None = None, **kwargs) -> Generator[RestResponseContextManager]:
|
413
411
|
"""
|
414
412
|
A wrapper for self.client.request that:
|
415
413
|
|
@@ -457,7 +455,7 @@ class FastHttpUser(User):
|
|
457
455
|
resp.failure(f"{e.__class__.__name__}: {e} at {', '.join(error_lines)}. Response was {short_resp}")
|
458
456
|
|
459
457
|
@contextmanager
|
460
|
-
def rest_(self, method, url, name=None, **kwargs) -> Generator[RestResponseContextManager
|
458
|
+
def rest_(self, method, url, name=None, **kwargs) -> Generator[RestResponseContextManager]:
|
461
459
|
"""
|
462
460
|
Some REST api:s use a timestamp as part of their query string (mainly to break through caches).
|
463
461
|
This is a convenience method for that, appending a _=<timestamp> parameter automatically
|
locust/dispatch.py
CHANGED
@@ -23,7 +23,7 @@ if TYPE_CHECKING:
|
|
23
23
|
T = TypeVar("T")
|
24
24
|
|
25
25
|
|
26
|
-
def _kl_generator(users: Iterable[tuple[T, float]]) ->
|
26
|
+
def _kl_generator(users: Iterable[tuple[T, float]]) -> Generator[T | None]:
|
27
27
|
"""Generator based on Kullback-Leibler divergence
|
28
28
|
|
29
29
|
For example, given users A, B with weights 5 and 1 respectively,
|
@@ -97,7 +97,7 @@ class UsersDispatcher(Iterator):
|
|
97
97
|
|
98
98
|
self._current_user_count = self.get_current_user_count()
|
99
99
|
|
100
|
-
self._dispatcher_generator: Generator[dict[str, dict[str, int]]
|
100
|
+
self._dispatcher_generator: Generator[dict[str, dict[str, int]]] = None # type: ignore
|
101
101
|
# a generator is assigned (in new_dispatch()) to _dispatcher_generator before it's used
|
102
102
|
|
103
103
|
self._user_generator = self._user_gen()
|
@@ -149,7 +149,7 @@ class UsersDispatcher(Iterator):
|
|
149
149
|
# Sort again, first by index within host, to ensure Users get started evenly across hosts
|
150
150
|
self._worker_nodes = sorted(self._worker_nodes, key=lambda worker: (worker._index_within_host, worker.id))
|
151
151
|
|
152
|
-
def _dispatcher(self) -> Generator[dict[str, dict[str, int]]
|
152
|
+
def _dispatcher(self) -> Generator[dict[str, dict[str, int]]]:
|
153
153
|
self._dispatch_in_progress = True
|
154
154
|
|
155
155
|
if self._rebalance:
|
@@ -268,7 +268,7 @@ class UsersDispatcher(Iterator):
|
|
268
268
|
self._rebalance = True
|
269
269
|
|
270
270
|
@contextlib.contextmanager
|
271
|
-
def _wait_between_dispatch_iteration_context(self) -> Generator[None
|
271
|
+
def _wait_between_dispatch_iteration_context(self) -> Generator[None]:
|
272
272
|
t0_rel = time.perf_counter()
|
273
273
|
|
274
274
|
# We don't use `try: ... finally: ...` because we don't want to sleep
|
locust/event.py
CHANGED
@@ -56,7 +56,7 @@ class EventHook:
|
|
56
56
|
@contextmanager
|
57
57
|
def measure(
|
58
58
|
self, request_type: str, name: str, response_length: int = 0, context=None
|
59
|
-
) -> Generator[dict[str, Any]
|
59
|
+
) -> Generator[dict[str, Any]]:
|
60
60
|
"""Convenience method for firing the event with automatically calculated response time and automatically marking the request as failed if an exception is raised (this is really only useful for the *request* event)
|
61
61
|
|
62
62
|
Example usage (in a task):
|
@@ -1,15 +1,15 @@
|
|
1
1
|
locust/__init__.py,sha256=Jit8eNUrwuMLqavyFvMZr69e61DILq_KB4yT4MciScw,1681
|
2
2
|
locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
|
3
|
-
locust/_version.py,sha256=
|
3
|
+
locust/_version.py,sha256=oPBsB4ZcBdTuICGVL72nwMaTGTRAuOD9iUlpqVPSj3E,458
|
4
4
|
locust/argument_parser.py,sha256=NPdS1TzhN0C6W5Mc0b1lUbQsEhVoTWK4q1-ol1PjPeo,28963
|
5
|
-
locust/clients.py,sha256=
|
5
|
+
locust/clients.py,sha256=OUc6N965Ip5HsRVt1GhnxCP_m9bgnLoredUHTHmyodc,19479
|
6
6
|
locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
locust/contrib/fasthttp.py,sha256=
|
7
|
+
locust/contrib/fasthttp.py,sha256=3DoIkXZLbs3rWSGiAgsWYPJeU6UW3HXPCsnhsziq60Y,28471
|
8
8
|
locust/contrib/postgres.py,sha256=OuMWnGYN10K65Tq2axVESEW25Y0g5gJb0rK90jkcCJg,1230
|
9
9
|
locust/debug.py,sha256=We6Z9W0btkKSc7PxWmrZx-xMynvOOsKhG6jmDgQin0g,5134
|
10
|
-
locust/dispatch.py,sha256=
|
10
|
+
locust/dispatch.py,sha256=KPjyUFxXuK3u7nOvJs5ZB7KWKUlyvxHCPE3SWTddOiY,16193
|
11
11
|
locust/env.py,sha256=e5FNcpoftv8G0D86cR1t1cXatumBmCIDA7DbR1JjOSw,13000
|
12
|
-
locust/event.py,sha256=
|
12
|
+
locust/event.py,sha256=AWoeG2q11Vpupv1eW9Rf2N0EI4dDDAldKe6zY1ajC7I,8717
|
13
13
|
locust/exception.py,sha256=jGgJ32ubuf4pWdlaVOkbh2Y0LlG0_DHi-lv3ib8ppOE,1791
|
14
14
|
locust/html.py,sha256=ioHs8R6aqK_XCBSv4fOV90PYWv_MYQuW9Pl71R6EidM,3496
|
15
15
|
locust/input_events.py,sha256=ZIyePyAMuA_YFYWg18g_pE4kwuQV3RbEB250MzXRwjY,3314
|
@@ -45,9 +45,9 @@ locust/webui/dist/assets/index-DQd3Odi5.js,sha256=KSEsSxvrUSsT08C4AcXte5FdBqbQls
|
|
45
45
|
locust/webui/dist/auth.html,sha256=lFK2hUASKiH4veqEKI8SVpVcv75L07iLgdsx1usfPRo,648
|
46
46
|
locust/webui/dist/index.html,sha256=w1ar7WpzWHSVkgoL5n6IPCOvAgWfmOChoYofr2xsey0,654
|
47
47
|
locust/webui/dist/report.html,sha256=bjpe_eyweJLqLk7REsQOdOPp7e8PoGRajD5P8gIJeNE,1472409
|
48
|
-
poetry.lock,sha256=
|
49
|
-
locust-2.31.6.
|
50
|
-
locust-2.31.6.
|
51
|
-
locust-2.31.6.
|
52
|
-
locust-2.31.6.
|
53
|
-
locust-2.31.6.
|
48
|
+
poetry.lock,sha256=SYexv51dGkbiljj9e0x0LVzQ0-gxKn31hwhFTO2t298,205000
|
49
|
+
locust-2.31.6.dev4.dist-info/LICENSE,sha256=78XGpIn3fHVBfaxlPNUfjVufSN7QsdhpJMRJHv2AFpo,1095
|
50
|
+
locust-2.31.6.dev4.dist-info/METADATA,sha256=eIMPg9vCKXqRCwTE0U8HmpzwtGLj3vY4r-hL6E_C8cE,7678
|
51
|
+
locust-2.31.6.dev4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
+
locust-2.31.6.dev4.dist-info/entry_points.txt,sha256=RhIxlLwU_Ae_WjimS5COUDLagdCh6IOMyLtgaQxNmlM,43
|
53
|
+
locust-2.31.6.dev4.dist-info/RECORD,,
|
poetry.lock
CHANGED
@@ -156,13 +156,13 @@ files = [
|
|
156
156
|
|
157
157
|
[[package]]
|
158
158
|
name = "certifi"
|
159
|
-
version = "2024.
|
159
|
+
version = "2024.8.30"
|
160
160
|
description = "Python package for providing Mozilla's CA Bundle."
|
161
161
|
optional = false
|
162
162
|
python-versions = ">=3.6"
|
163
163
|
files = [
|
164
|
-
{file = "certifi-2024.
|
165
|
-
{file = "certifi-2024.
|
164
|
+
{file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"},
|
165
|
+
{file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"},
|
166
166
|
]
|
167
167
|
|
168
168
|
[[package]]
|
@@ -544,13 +544,13 @@ dotenv = ["python-dotenv"]
|
|
544
544
|
|
545
545
|
[[package]]
|
546
546
|
name = "flask-cors"
|
547
|
-
version = "
|
547
|
+
version = "5.0.0"
|
548
548
|
description = "A Flask extension adding a decorator for CORS support"
|
549
549
|
optional = false
|
550
550
|
python-versions = "*"
|
551
551
|
files = [
|
552
|
-
{file = "Flask_Cors-
|
553
|
-
{file = "flask_cors-
|
552
|
+
{file = "Flask_Cors-5.0.0-py2.py3-none-any.whl", hash = "sha256:b9e307d082a9261c100d8fb0ba909eec6a228ed1b60a8315fd85f783d61910bc"},
|
553
|
+
{file = "flask_cors-5.0.0.tar.gz", hash = "sha256:5aadb4b950c4e93745034594d9f3ea6591f734bb3662e16e255ffbf5e89c88ef"},
|
554
554
|
]
|
555
555
|
|
556
556
|
[package.dependencies]
|
@@ -1320,44 +1320,44 @@ files = [
|
|
1320
1320
|
|
1321
1321
|
[[package]]
|
1322
1322
|
name = "mypy"
|
1323
|
-
version = "1.
|
1323
|
+
version = "1.11.2"
|
1324
1324
|
description = "Optional static typing for Python"
|
1325
1325
|
optional = false
|
1326
1326
|
python-versions = ">=3.8"
|
1327
1327
|
files = [
|
1328
|
-
{file = "mypy-1.
|
1329
|
-
{file = "mypy-1.
|
1330
|
-
{file = "mypy-1.
|
1331
|
-
{file = "mypy-1.
|
1332
|
-
{file = "mypy-1.
|
1333
|
-
{file = "mypy-1.
|
1334
|
-
{file = "mypy-1.
|
1335
|
-
{file = "mypy-1.
|
1336
|
-
{file = "mypy-1.
|
1337
|
-
{file = "mypy-1.
|
1338
|
-
{file = "mypy-1.
|
1339
|
-
{file = "mypy-1.
|
1340
|
-
{file = "mypy-1.
|
1341
|
-
{file = "mypy-1.
|
1342
|
-
{file = "mypy-1.
|
1343
|
-
{file = "mypy-1.
|
1344
|
-
{file = "mypy-1.
|
1345
|
-
{file = "mypy-1.
|
1346
|
-
{file = "mypy-1.
|
1347
|
-
{file = "mypy-1.
|
1348
|
-
{file = "mypy-1.
|
1349
|
-
{file = "mypy-1.
|
1350
|
-
{file = "mypy-1.
|
1351
|
-
{file = "mypy-1.
|
1352
|
-
{file = "mypy-1.
|
1353
|
-
{file = "mypy-1.
|
1354
|
-
{file = "mypy-1.
|
1328
|
+
{file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"},
|
1329
|
+
{file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"},
|
1330
|
+
{file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"},
|
1331
|
+
{file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"},
|
1332
|
+
{file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"},
|
1333
|
+
{file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"},
|
1334
|
+
{file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"},
|
1335
|
+
{file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"},
|
1336
|
+
{file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"},
|
1337
|
+
{file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"},
|
1338
|
+
{file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"},
|
1339
|
+
{file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"},
|
1340
|
+
{file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"},
|
1341
|
+
{file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"},
|
1342
|
+
{file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"},
|
1343
|
+
{file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"},
|
1344
|
+
{file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"},
|
1345
|
+
{file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"},
|
1346
|
+
{file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"},
|
1347
|
+
{file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"},
|
1348
|
+
{file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"},
|
1349
|
+
{file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"},
|
1350
|
+
{file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"},
|
1351
|
+
{file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"},
|
1352
|
+
{file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"},
|
1353
|
+
{file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"},
|
1354
|
+
{file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"},
|
1355
1355
|
]
|
1356
1356
|
|
1357
1357
|
[package.dependencies]
|
1358
1358
|
mypy-extensions = ">=1.0.0"
|
1359
1359
|
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
1360
|
-
typing-extensions = ">=4.
|
1360
|
+
typing-extensions = ">=4.6.0"
|
1361
1361
|
|
1362
1362
|
[package.extras]
|
1363
1363
|
dmypy = ["psutil (>=4.0)"]
|
@@ -1572,13 +1572,13 @@ testing = ["covdefaults (>=2.3)", "pytest (>=8.2.2)", "pytest-cov (>=5)", "pytes
|
|
1572
1572
|
|
1573
1573
|
[[package]]
|
1574
1574
|
name = "pyquery"
|
1575
|
-
version = "2.0.
|
1575
|
+
version = "2.0.1"
|
1576
1576
|
description = "A jquery-like library for python"
|
1577
1577
|
optional = false
|
1578
1578
|
python-versions = "*"
|
1579
1579
|
files = [
|
1580
|
-
{file = "pyquery-2.0.
|
1581
|
-
{file = "pyquery-2.0.
|
1580
|
+
{file = "pyquery-2.0.1-py3-none-any.whl", hash = "sha256:aedfa0bd0eb9afc94b3ddbec8f375a6362b32bc9662f46e3e0d866483f4771b0"},
|
1581
|
+
{file = "pyquery-2.0.1.tar.gz", hash = "sha256:0194bb2706b12d037db12c51928fe9ebb36b72d9e719565daba5a6c595322faf"},
|
1582
1582
|
]
|
1583
1583
|
|
1584
1584
|
[package.dependencies]
|
@@ -1901,13 +1901,13 @@ idna2008 = ["idna"]
|
|
1901
1901
|
|
1902
1902
|
[[package]]
|
1903
1903
|
name = "rich"
|
1904
|
-
version = "13.
|
1904
|
+
version = "13.8.0"
|
1905
1905
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
1906
1906
|
optional = false
|
1907
1907
|
python-versions = ">=3.7.0"
|
1908
1908
|
files = [
|
1909
|
-
{file = "rich-13.
|
1910
|
-
{file = "rich-13.
|
1909
|
+
{file = "rich-13.8.0-py3-none-any.whl", hash = "sha256:2e85306a063b9492dffc86278197a60cbece75bcb766022f3436f567cae11bdc"},
|
1910
|
+
{file = "rich-13.8.0.tar.gz", hash = "sha256:a5ac1f1cd448ade0d59cc3356f7db7a7ccda2c8cbae9c7a90c28ff463d3e91f4"},
|
1911
1911
|
]
|
1912
1912
|
|
1913
1913
|
[package.dependencies]
|
@@ -1960,19 +1960,23 @@ jeepney = ">=0.6"
|
|
1960
1960
|
|
1961
1961
|
[[package]]
|
1962
1962
|
name = "setuptools"
|
1963
|
-
version = "
|
1963
|
+
version = "74.1.1"
|
1964
1964
|
description = "Easily download, build, install, upgrade, and uninstall Python packages"
|
1965
1965
|
optional = false
|
1966
1966
|
python-versions = ">=3.8"
|
1967
1967
|
files = [
|
1968
|
-
{file = "setuptools-
|
1969
|
-
{file = "setuptools-
|
1968
|
+
{file = "setuptools-74.1.1-py3-none-any.whl", hash = "sha256:fc91b5f89e392ef5b77fe143b17e32f65d3024744fba66dc3afe07201684d766"},
|
1969
|
+
{file = "setuptools-74.1.1.tar.gz", hash = "sha256:2353af060c06388be1cecbf5953dcdb1f38362f87a2356c480b6b4d5fcfc8847"},
|
1970
1970
|
]
|
1971
1971
|
|
1972
1972
|
[package.extras]
|
1973
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"]
|
1973
1974
|
core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"]
|
1975
|
+
cover = ["pytest-cov"]
|
1974
1976
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
|
1975
|
-
|
1977
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
1978
|
+
test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"]
|
1979
|
+
type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"]
|
1976
1980
|
|
1977
1981
|
[[package]]
|
1978
1982
|
name = "snowballstemmer"
|
@@ -2318,18 +2322,22 @@ watchdog = ["watchdog (>=2.3)"]
|
|
2318
2322
|
|
2319
2323
|
[[package]]
|
2320
2324
|
name = "zipp"
|
2321
|
-
version = "3.20.
|
2325
|
+
version = "3.20.1"
|
2322
2326
|
description = "Backport of pathlib-compatible object wrapper for zip files"
|
2323
2327
|
optional = false
|
2324
2328
|
python-versions = ">=3.8"
|
2325
2329
|
files = [
|
2326
|
-
{file = "zipp-3.20.
|
2327
|
-
{file = "zipp-3.20.
|
2330
|
+
{file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"},
|
2331
|
+
{file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"},
|
2328
2332
|
]
|
2329
2333
|
|
2330
2334
|
[package.extras]
|
2335
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
2336
|
+
cover = ["pytest-cov"]
|
2331
2337
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
2332
|
-
|
2338
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
2339
|
+
test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"]
|
2340
|
+
type = ["pytest-mypy"]
|
2333
2341
|
|
2334
2342
|
[[package]]
|
2335
2343
|
name = "zope-event"
|
@@ -2351,45 +2359,45 @@ test = ["zope.testrunner"]
|
|
2351
2359
|
|
2352
2360
|
[[package]]
|
2353
2361
|
name = "zope-interface"
|
2354
|
-
version = "7.0.
|
2362
|
+
version = "7.0.3"
|
2355
2363
|
description = "Interfaces for Python"
|
2356
2364
|
optional = false
|
2357
2365
|
python-versions = ">=3.8"
|
2358
2366
|
files = [
|
2359
|
-
{file = "zope.interface-7.0.
|
2360
|
-
{file = "zope.interface-7.0.
|
2361
|
-
{file = "zope.interface-7.0.
|
2362
|
-
{file = "zope.interface-7.0.
|
2363
|
-
{file = "zope.interface-7.0.
|
2364
|
-
{file = "zope.interface-7.0.
|
2365
|
-
{file = "zope.interface-7.0.
|
2366
|
-
{file = "zope.interface-7.0.
|
2367
|
-
{file = "zope.interface-7.0.
|
2368
|
-
{file = "zope.interface-7.0.
|
2369
|
-
{file = "zope.interface-7.0.
|
2370
|
-
{file = "zope.interface-7.0.
|
2371
|
-
{file = "zope.interface-7.0.
|
2372
|
-
{file = "zope.interface-7.0.
|
2373
|
-
{file = "zope.interface-7.0.
|
2374
|
-
{file = "zope.interface-7.0.
|
2375
|
-
{file = "zope.interface-7.0.
|
2376
|
-
{file = "zope.interface-7.0.
|
2377
|
-
{file = "zope.interface-7.0.
|
2378
|
-
{file = "zope.interface-7.0.
|
2379
|
-
{file = "zope.interface-7.0.
|
2380
|
-
{file = "zope.interface-7.0.
|
2381
|
-
{file = "zope.interface-7.0.
|
2382
|
-
{file = "zope.interface-7.0.
|
2383
|
-
{file = "zope.interface-7.0.
|
2384
|
-
{file = "zope.interface-7.0.
|
2385
|
-
{file = "zope.interface-7.0.
|
2386
|
-
{file = "zope.interface-7.0.
|
2387
|
-
{file = "zope.interface-7.0.
|
2388
|
-
{file = "zope.interface-7.0.
|
2389
|
-
{file = "zope.interface-7.0.
|
2390
|
-
{file = "zope.interface-7.0.
|
2391
|
-
{file = "zope.interface-7.0.
|
2392
|
-
{file = "zope.interface-7.0.
|
2367
|
+
{file = "zope.interface-7.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9b9369671a20b8d039b8e5a1a33abd12e089e319a3383b4cc0bf5c67bd05fe7b"},
|
2368
|
+
{file = "zope.interface-7.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db6237e8fa91ea4f34d7e2d16d74741187e9105a63bbb5686c61fea04cdbacca"},
|
2369
|
+
{file = "zope.interface-7.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53d678bb1c3b784edbfb0adeebfeea6bf479f54da082854406a8f295d36f8386"},
|
2370
|
+
{file = "zope.interface-7.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3aa8fcbb0d3c2be1bfd013a0f0acd636f6ed570c287743ae2bbd467ee967154d"},
|
2371
|
+
{file = "zope.interface-7.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6195c3c03fef9f87c0dbee0b3b6451df6e056322463cf35bca9a088e564a3c58"},
|
2372
|
+
{file = "zope.interface-7.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:11fa1382c3efb34abf16becff8cb214b0b2e3144057c90611621f2d186b7e1b7"},
|
2373
|
+
{file = "zope.interface-7.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:af94e429f9d57b36e71ef4e6865182090648aada0cb2d397ae2b3f7fc478493a"},
|
2374
|
+
{file = "zope.interface-7.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dd647fcd765030638577fe6984284e0ebba1a1008244c8a38824be096e37fe3"},
|
2375
|
+
{file = "zope.interface-7.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bee1b722077d08721005e8da493ef3adf0b7908e0cd85cc7dc836ac117d6f32"},
|
2376
|
+
{file = "zope.interface-7.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2545d6d7aac425d528cd9bf0d9e55fcd47ab7fd15f41a64b1c4bf4c6b24946dc"},
|
2377
|
+
{file = "zope.interface-7.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d04b11ea47c9c369d66340dbe51e9031df2a0de97d68f442305ed7625ad6493"},
|
2378
|
+
{file = "zope.interface-7.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:064ade95cb54c840647205987c7b557f75d2b2f7d1a84bfab4cf81822ef6e7d1"},
|
2379
|
+
{file = "zope.interface-7.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3fcdc76d0cde1c09c37b7c6b0f8beba2d857d8417b055d4f47df9c34ec518bdd"},
|
2380
|
+
{file = "zope.interface-7.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3d4b91821305c8d8f6e6207639abcbdaf186db682e521af7855d0bea3047c8ca"},
|
2381
|
+
{file = "zope.interface-7.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35062d93bc49bd9b191331c897a96155ffdad10744ab812485b6bad5b588d7e4"},
|
2382
|
+
{file = "zope.interface-7.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c96b3e6b0d4f6ddfec4e947130ec30bd2c7b19db6aa633777e46c8eecf1d6afd"},
|
2383
|
+
{file = "zope.interface-7.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e0c151a6c204f3830237c59ee4770cc346868a7a1af6925e5e38650141a7f05"},
|
2384
|
+
{file = "zope.interface-7.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:3de1d553ce72868b77a7e9d598c9bff6d3816ad2b4cc81c04f9d8914603814f3"},
|
2385
|
+
{file = "zope.interface-7.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab985c566a99cc5f73bc2741d93f1ed24a2cc9da3890144d37b9582965aff996"},
|
2386
|
+
{file = "zope.interface-7.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d976fa7b5faf5396eb18ce6c132c98e05504b52b60784e3401f4ef0b2e66709b"},
|
2387
|
+
{file = "zope.interface-7.0.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a207c6b2c58def5011768140861a73f5240f4f39800625072ba84e76c9da0b"},
|
2388
|
+
{file = "zope.interface-7.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:382d31d1e68877061daaa6499468e9eb38eb7625d4369b1615ac08d3860fe896"},
|
2389
|
+
{file = "zope.interface-7.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2c4316a30e216f51acbd9fb318aa5af2e362b716596d82cbb92f9101c8f8d2e7"},
|
2390
|
+
{file = "zope.interface-7.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01e6e58078ad2799130c14a1d34ec89044ada0e1495329d72ee0407b9ae5100d"},
|
2391
|
+
{file = "zope.interface-7.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:799ef7a444aebbad5a145c3b34bff012b54453cddbde3332d47ca07225792ea4"},
|
2392
|
+
{file = "zope.interface-7.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3b7ce6d46fb0e60897d62d1ff370790ce50a57d40a651db91a3dde74f73b738"},
|
2393
|
+
{file = "zope.interface-7.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:f418c88f09c3ba159b95a9d1cfcdbe58f208443abb1f3109f4b9b12fd60b187c"},
|
2394
|
+
{file = "zope.interface-7.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:84f8794bd59ca7d09d8fce43ae1b571be22f52748169d01a13d3ece8394d8b5b"},
|
2395
|
+
{file = "zope.interface-7.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7d92920416f31786bc1b2f34cc4fc4263a35a407425319572cbf96b51e835cd3"},
|
2396
|
+
{file = "zope.interface-7.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95e5913ec718010dc0e7c215d79a9683b4990e7026828eedfda5268e74e73e11"},
|
2397
|
+
{file = "zope.interface-7.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1eeeb92cb7d95c45e726e3c1afe7707919370addae7ed14f614e22217a536958"},
|
2398
|
+
{file = "zope.interface-7.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd32f30f40bfd8511b17666895831a51b532e93fc106bfa97f366589d3e4e0e"},
|
2399
|
+
{file = "zope.interface-7.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:5112c530fa8aa2108a3196b9c2f078f5738c1c37cfc716970edc0df0414acda8"},
|
2400
|
+
{file = "zope.interface-7.0.3.tar.gz", hash = "sha256:cd2690d4b08ec9eaf47a85914fe513062b20da78d10d6d789a792c0b20307fb1"},
|
2393
2401
|
]
|
2394
2402
|
|
2395
2403
|
[package.dependencies]
|
@@ -2403,4 +2411,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"]
|
|
2403
2411
|
[metadata]
|
2404
2412
|
lock-version = "2.0"
|
2405
2413
|
python-versions = ">=3.9"
|
2406
|
-
content-hash = "
|
2414
|
+
content-hash = "a2280df028fb95370ecca314895950230c95c7d3b1c9d9f2339a4b874070cd44"
|
File without changes
|
File without changes
|
File without changes
|