Skip to content

Commit

Permalink
Remove future dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
etripier committed Nov 15, 2023
1 parent 058eedf commit 58b3dfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
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


4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from setuptools import setup
from setuptools import find_packages
from setuptools import find_packages, setup

version = {}
with open("./intuitlib/version.py") as fp:
Expand All @@ -31,7 +30,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

0 comments on commit 58b3dfb

Please sign in to comment.