Skip to content

Commit

Permalink
Removing cache - becase of risk
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwetabhk committed Jan 16, 2020
1 parent 5d2d17f commit 2225a2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions fyle_rest_auth/authentication.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import json
import requests

import requests_cache

from django.contrib.auth import get_user_model
from django.conf import settings

Expand All @@ -11,8 +9,6 @@

from .models import AuthToken

requests_cache.install_cache('demo_cache', backend='sqlite', expire_after=1200)

User = get_user_model()


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name='fyle-rest-auth',
version='0.1.0',
version='0.2.0',
author='Shwetabh Kumar',
author_email='[email protected]',
description='Django application to implement OAuth 2.0 using Fyle in Django rest framework',
Expand All @@ -18,7 +18,7 @@
keywords=['fyle', 'rest', 'django-rest-framework', 'api', 'python', 'oauth 2'],
url='https://github.com/fylein/fyle-rest-auth',
packages=setuptools.find_packages(),
install_requires=['requests', 'requests-cache', 'django==3.0.1',
install_requires=['requests', 'requests-cache', 'django>=3.0.2',
'django-rest-framework==0.1.0', 'requests-cache==0.5.2',
'fylesdk==0.11.0'],
include_package_data=True,
Expand Down

0 comments on commit 2225a2b

Please sign in to comment.