Skip to content

Commit

Permalink
Remove deprecated usd response field from Datamaxi.dex_trade.get (#…
Browse files Browse the repository at this point in the history
…55)

* fix: remove `usd` response field from DEX trade

* chore: bump up version v0.17.1
  • Loading branch information
martinkersner authored Aug 26, 2024
1 parent acd8be1 commit 9ab0b12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datamaxi/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.17.0"
__version__ = "0.17.1"
2 changes: 1 addition & 1 deletion datamaxi/datamaxi/dex_trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def next_request():
)

if pandas:
df = convert_data_to_data_frame(res["data"], ["b", "bq", "qq", "p", "usd"])
df = convert_data_to_data_frame(res["data"], ["b", "bq", "qq", "p"])
return df, next_request
else:
return res, next_request
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "datamaxi"
version = "0.17.0"
version = "0.17.1"
authors = [
{ name="Bisonai", email="[email protected]" },
]
Expand Down

0 comments on commit 9ab0b12

Please sign in to comment.