Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: intuit/oauth-pythonclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Greenbax/oauth-pythonclient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Nov 15, 2023

  1. Remove future dependency

    etripier committed Nov 15, 2023
    Copy the full SHA
    58b3dfb View commit details
Showing with 6 additions and 7 deletions.
  1. +5 −1 intuitlib/client.py
  2. +0 −3 requirements.txt
  3. +1 −3 setup.py
6 changes: 5 additions & 1 deletion intuitlib/client.py
Original file line number Diff line number Diff line change
@@ -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,
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
@@ -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
@@ -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:
@@ -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',