From eadf20033975be3b94ff1ebfca554eacd1358571 Mon Sep 17 00:00:00 2001 From: jbonilla-tao <161871533+jbonilla-tao@users.noreply.github.com> Date: Mon, 9 Dec 2024 03:52:23 -0500 Subject: [PATCH 1/3] Update requirements.txt to allow newer websockets package Currently missing out on improvements from newer websocket package. This old dependency also conflicts 3rd party requirements when being used in a large python project with modern dependencies. --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index e8c712fd..ab7a99cb 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ sphinx-autodoc-typehints~=1.19.2 -websockets~=10.3 +websockets>=10.3 From fb0366e0bfba8d11ac6b89dfcc33ec847aca2b2e Mon Sep 17 00:00:00 2001 From: jbonilla-tao <161871533+jbonilla-tao@users.noreply.github.com> Date: Mon, 9 Dec 2024 04:23:32 -0500 Subject: [PATCH 2/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 98ffccb9..ea6bfce7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.8" urllib3 = ">=1.26.9,<3.0.0" -websockets = ">=10.3,<14.0" +websockets = ">=10.3,<15.0" certifi = ">=2022.5.18,<2025.0.0" [tool.poetry.dev-dependencies] From f0b1b74c357002543b9591934f17b0ca69d532ef Mon Sep 17 00:00:00 2001 From: jbonilla-tao <161871533+jbonilla-tao@users.noreply.github.com> Date: Mon, 9 Dec 2024 06:03:37 -0500 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ea6bfce7..fab7a61e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polygon-api-client" -version = "0.0.0" +version = "2.0.0" description = "Official Polygon.io REST and Websocket client." authors = ["polygon.io"] license = "MIT"