From d3a48ae1bb75974db662a1d01a5958598fe506dc Mon Sep 17 00:00:00 2001 From: yasir_ejaz Date: Mon, 11 Sep 2023 21:43:26 +0400 Subject: [PATCH 1/2] requests dep missing from package --- pyproject.toml | 3 ++- requirements.in | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d7d710e..f2a1602 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,8 @@ readme = "README.md" requires-python = ">=3.8" keywords = ["bluefin", "exchange", "decentralized", "perpetuals", "blockchain"] dependencies = [ - 'aiohttp ~= 3.8.5', + 'requests ~= 2.31.0', + 'aiohttp ~= 3.8.5', 'aiosignal ~= 1.3.1', 'asn1crypto ~= 1.5.1', 'async-timeout ~= 4.0.3', diff --git a/requirements.in b/requirements.in index 47dfbbe..53f7170 100644 --- a/requirements.in +++ b/requirements.in @@ -31,3 +31,4 @@ websocket-client==1.6.2 yarl==1.9.2 zope.event==5.0 zope.interface==6.0 +requests==2.31.0 From 730c4908ca3a71db4f38527bb1dfe427f40a0285 Mon Sep 17 00:00:00 2001 From: yasir_ejaz Date: Mon, 11 Sep 2023 21:45:25 +0400 Subject: [PATCH 2/2] Upgrade version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f2a1602..acf0214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bluefin_v2_client" -version = "2.2.1" +version = "2.3.1" description = "Library to interact with Bluefin exchange protocol including its off-chain api-gateway and on-chain contracts" readme = "README.md" requires-python = ">=3.8"