Skip to content

Commit 8e2308b

Browse files
committed
chore: fix cve with setuptools
Signed-off-by: kohlisid <sidhant.kohli@gmail.com>
1 parent 3e01da2 commit 8e2308b

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ protobuf = ">=3.20,<6.0"
3131
aiorun = "^2023.7"
3232
uvloop = "^0.19.0"
3333
psutil = "^6.0.0"
34+
setuptools = "78.1.1"
3435

3536
[tool.poetry.group.dev]
3637
optional = true

tests/map/test_multiproc_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_max_process_count(self) -> None:
3636
"""Max process count is capped at 2 * os.cpu_count, irrespective of what the user
3737
provides as input"""
3838
default_val = os.cpu_count()
39-
server = MapMultiprocServer(mapper_instance=map_handler, server_count=20)
39+
server = MapMultiprocServer(mapper_instance=map_handler, server_count=100)
4040
self.assertEqual(server._process_count, default_val * 2)
4141

4242
def test_udf_map_err_handshake(self):

0 commit comments

Comments
 (0)