Skip to content

Commit

Permalink
Temporary change to allow use in Python 3.4.
Browse files Browse the repository at this point in the history
RS-301
  • Loading branch information
djspoulter committed Nov 4, 2016
1 parent 1892782 commit 10359a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
@@ -1 +1 @@
2.0a1
2.0a2
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -13,3 +13,8 @@ Version 1.0 alpha 5

Added support for custom API URL.
Added support for specifying request timeout.

Version 2.0 alpha 2
-------------------

Added support for Python 3.4
5 changes: 4 additions & 1 deletion twapi_connection/__init__.py
Expand Up @@ -13,8 +13,11 @@
# INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
#
##############################################################################
try:
from http import HTTPStatus
except ImportError:
from http import client as HTTPStatus

from http import HTTPStatus
from json import dumps as json_serialize

from pkg_resources import get_distribution
Expand Down

0 comments on commit 10359a3

Please sign in to comment.