From 8195ffa77e6bad3daabebb4aa6f73a3e7dac000e Mon Sep 17 00:00:00 2001 From: Martin Dengler Date: Mon, 27 Oct 2025 19:25:51 -0400 Subject: [PATCH 1/4] chore: allow newer websockets --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2a440b7..0ea17f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.8" requests = "^2.31.0" -websockets = "^12.0" +websockets = ">=12.0" [tool.poetry.group.dev.dependencies] python-dotenv = "^1.0.0" From 5dde137077da1f2dd9013a169227f4dea158caf5 Mon Sep 17 00:00:00 2001 From: Martin Dengler Date: Mon, 27 Oct 2025 19:26:15 -0400 Subject: [PATCH 2/4] chore: allow newer python --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0ea17f0..934a4a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["benclave "] readme = "README.md" [tool.poetry.dependencies] -python = "^3.8" +python = ">=3.8" requests = "^2.31.0" websockets = ">=12.0" From 98638f4a768030603fc61a888492b48dec6fa57b Mon Sep 17 00:00:00 2001 From: Martin Dengler Date: Mon, 27 Oct 2025 19:26:26 -0400 Subject: [PATCH 3/4] chore: allow newer requests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 934a4a3..078ab86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = ">=3.8" -requests = "^2.31.0" +requests = ">=2.31.0" websockets = ">=12.0" [tool.poetry.group.dev.dependencies] From d3415b1babcc2bde4b7c85576d034ddc14ce538b Mon Sep 17 00:00:00 2001 From: Martin Dengler Date: Mon, 27 Oct 2025 19:26:34 -0400 Subject: [PATCH 4/4] chore: allow newer python-dotenv --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 078ab86..9ea3e8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requests = ">=2.31.0" websockets = ">=12.0" [tool.poetry.group.dev.dependencies] -python-dotenv = "^1.0.0" +python-dotenv = ">=1.0.0" [build-system] requires = ["poetry-core"]