From 44dc2b8e8e5f0581d9cb2913ad32d639ba8b001f Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 30 Jul 2024 05:16:56 +0200 Subject: [PATCH 1/4] Upgrade packages in requirements.txt to support python 3.12. --- requirements.txt | Bin 104 -> 102 bytes setup.py | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index ec424211b1b08e4515a41abcfed8eb7acd0c2703..40ba2e47b6b2b783e834e4d405a41ed7508bbf51 100644 GIT binary patch delta 51 vcmc~ull=d$fT5Bh6$ovC&=3gqz}R4-xIC*7kYg~>UY-lYFlOLo;9>v(H2euL delta 53 ucmYex5dZ(LfT5Bh6$ovC(2_xq!2pO&CQ8b48bUe76K&E(QQeAPHyy diff --git a/setup.py b/setup.py index 274442d..a1cc3ed 100644 --- a/setup.py +++ b/setup.py @@ -41,9 +41,9 @@ "bfxapi.rest._interfaces", ], install_requires=[ - "pyee~=9.0.4", - "websockets~=11.0.3", - "requests~=2.31.0", + "pyee~=11.1.0", + "websockets~=12.0", + "requests~=2.32.3", "types-requests~=2.31.0.10", "types-urllib3~=1.26.25.14", ], From c394ec860085fad304bc7df5d96d6f8c23950152 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 30 Jul 2024 05:20:50 +0200 Subject: [PATCH 2/4] Upgrade mypy version to support python 3.12. --- dev-requirements.txt | Bin 370 -> 372 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 3a73aee50542d0f0c5d93524c6aba450c740e209..cd669e3a67cd6a3ace1f67474b03c0b24b112bc0 100644 GIT binary patch delta 18 Zcmeyw^o41H1G^!EA%h-+!A4hIMgTSb1f~E0 delta 16 Xcmeyu^oePL1FI>69)saVcU?vRE`9`h From 398d79ccaa6100e1f17453bac23a95730d5947ca Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 30 Jul 2024 05:22:36 +0200 Subject: [PATCH 3/4] Add support to python 3.12. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a1cc3ed..8d53827 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="bitfinex,api,trading", project_urls={ From 981d58736b69c5f0af749419fe746ebf35f393f8 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 30 Jul 2024 05:23:21 +0200 Subject: [PATCH 4/4] Bump __version__ in file bfxapi/_version.py to v3.0.4. --- bfxapi/_version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bfxapi/_version.py b/bfxapi/_version.py index 8d1c862..8e10cb4 100644 --- a/bfxapi/_version.py +++ b/bfxapi/_version.py @@ -1 +1 @@ -__version__ = "3.0.3" +__version__ = "3.0.4" diff --git a/setup.py b/setup.py index 8d53827..3862d96 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="bitfinex-api-py", - version="3.0.3", + version="3.0.4", description="Official Bitfinex Python API", long_description=( "A Python reference implementation of the Bitfinex API "