Skip to content

Commit

Permalink
Merge pull request #23 from peshay/2.1
Browse files Browse the repository at this point in the history
2.1
  • Loading branch information
peshay authored Dec 31, 2017
2 parents cd2b35d + 7ef8053 commit 3bc4e27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions btcde.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
requests_log.setLevel(logging.DEBUG)
requests_log.propagate = True

__version__ = '2.0'
__version__ = '2.1'

# disable unsecure SSL warning
requests.packages.urllib3.disable_warnings()
Expand Down Expand Up @@ -166,7 +166,7 @@ def APIConnect(self, method, params):
# Handle API Errors
if HandleAPIErrors(r):
# get results
result = r.json()
result = r.json(parse_float=decimal.Decimal)
else:
result = {}
except requests.exceptions.RequestException as e:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Setup to install Bitcoin.de API Python Module."""
from distutils.core import setup
setup(name='btcde',
version='2.0',
version='2.1',
py_modules=['btcde'],
install_requires=['requests', 'future'],
description='API Wrapper for Bitcoin.de Trading API.',
Expand Down

0 comments on commit 3bc4e27

Please sign in to comment.