From ca47d23339025add55624f693197656c6615a882 Mon Sep 17 00:00:00 2001 From: Alex Contryman Date: Thu, 28 Jul 2022 21:06:51 -0700 Subject: [PATCH] Fix withdrawal_to_coinbase url (#33) * Fix * Version --- coinbasepro/auth_client.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/coinbasepro/auth_client.py b/coinbasepro/auth_client.py index 71e7ab3..e44eaea 100644 --- a/coinbasepro/auth_client.py +++ b/coinbasepro/auth_client.py @@ -897,7 +897,7 @@ def withdraw_to_coinbase( } r = self._send_message( "post", - "/withdrawals/coinbase", + "/withdrawals/coinbase-account", data=json.dumps(params), rate_limiter=self.a_rate_limiter, ) diff --git a/setup.py b/setup.py index df92569..6cf2bc9 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name="coinbasepro", - version="0.3.1", + version="0.3.2", description="A Python interface for the Coinbase Pro API.", long_description=readme + "\n\n" + history, long_description_content_type="text/x-rst", @@ -41,5 +41,6 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], )