From c65ae2dafeb798bbe4b077989d51399ffa10da2d Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Wed, 26 Jun 2024 21:34:03 +0200 Subject: [PATCH 1/2] Add marker py.typed to root package bfxapi. --- bfxapi/py.typed | 0 dev-requirements.txt | Bin 368 -> 370 bytes requirements.txt | Bin 140 -> 104 bytes setup.py | 6 ++++-- 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 bfxapi/py.typed diff --git a/bfxapi/py.typed b/bfxapi/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/dev-requirements.txt b/dev-requirements.txt index efac474934b0f5d5c4fa3e96d22c3aa56d11aaf6..3a73aee50542d0f0c5d93524c6aba450c740e209 100644 GIT binary patch delta 28 icmeys^oeOg9=OV delta 54 zcmd1kVVn?SV8md-pvPdyz{|kJP|8rmkOPF73`q>e47NaM2$VBoFaxVF0jmK30EY*f diff --git a/setup.py b/setup.py index f8002921..fb260106 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,10 @@ install_requires=[ "pyee~=9.0.4", "websockets~=11.0.3", - "requests~=2.28.1", - "urllib3~=1.26.14", + "requests~=2.31.0", + "types-requests~=2.31.0.10", + "types-urllib3~=1.26.25.14", ], python_requires=">=3.8", + package_data={"bfxapi": ["py.typed"]}, ) From 76f6ac9d33a80598d7cabd51af3120a91d9747b1 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Wed, 26 Jun 2024 21:34:55 +0200 Subject: [PATCH 2/2] Bump __version__ in file bfxapi/_version.py to v3.0.3. --- 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 131942e7..8d1c8625 100644 --- a/bfxapi/_version.py +++ b/bfxapi/_version.py @@ -1 +1 @@ -__version__ = "3.0.2" +__version__ = "3.0.3" diff --git a/setup.py b/setup.py index fb260106..274442d8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="bitfinex-api-py", - version="3.0.2", + version="3.0.3", description="Official Bitfinex Python API", long_description=( "A Python reference implementation of the Bitfinex API "