From 5f49ee39928a9405a098fa3257f9efdc9b1f696a Mon Sep 17 00:00:00 2001 From: reibs Date: Mon, 9 Dec 2024 18:29:13 -0800 Subject: [PATCH 1/2] fix tests --- tests/test_host_env.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/test_host_env.py b/tests/test_host_env.py index 41757a4ec..e6194d3ac 100644 --- a/tests/test_host_env.py +++ b/tests/test_host_env.py @@ -11,17 +11,13 @@ def mock_partitions(): device="/dev/sda1", mountpoint="/", fstype="ext4", - opts="rw,relatime", - maxfile=0, - maxpath=0, + opts="rw,relatime" ), sdiskpart( device="z:\\", mountpoint="z:\\", fstype="ntfs", - opts="rw,relatime", - maxfile=0, - maxpath=0, + opts="rw,relatime" ), ] From b59877e2e0b2bd35cd895e67244c25d204dfc3f0 Mon Sep 17 00:00:00 2001 From: reibs Date: Mon, 9 Dec 2024 18:37:41 -0800 Subject: [PATCH 2/2] bump pyproject --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 392e87eff..aeff69d28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agentops" -version = "0.3.19" +version = "0.3.20" authors = [ { name="Alex Reibman", email="areibman@gmail.com" }, { name="Shawn Qiu", email="siyangqiu@gmail.com" },