Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion intuitlib/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
from __future__ import absolute_import

import json
try:
from urllib.parse import urlencode
except ImportError:
from urllib import urlencode

import requests
from future.moves.urllib.parse import urlencode

from intuitlib.utils import (
get_discovery_doc,
Expand Down
3 changes: 0 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
python_jose>=2.0.2
future>=0.16.0
requests>=2.13.0
mock>=2.0.0
requests_oauthlib>=1.0.0
Expand All @@ -9,5 +8,3 @@ pytest>=3.8.0
pytest-cov==2.5.0
six>=1.10.0
enum-compat


1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
namespace_packages=('intuitlib',),
install_requires=[
'python_jose>=2.0.2',
'future>=0.16.0',
'requests>=2.13.0',
'requests_oauthlib>=1.0.0',
'six>=1.10.0',
Expand Down