-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Table names clean up and Update Pylint
- Loading branch information
1 parent
39d7e1a
commit 6f55809
Showing
4 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: CI | ||
name: Pylint Check | ||
|
||
on: | ||
pull_request: | ||
|
@@ -11,8 +11,8 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: GitHub Action for pylint | ||
uses: cclauss/[email protected] | ||
- name: Python Pylin GitHub Action | ||
uses: fylein/python-pylint-github-action@v4 | ||
with: | ||
args: pip install -r requirements.txt && pylint --load-plugins pylint_django --rcfile=.pylintrc **/** | ||
args: pip3 install -r requirements.txt && pip install pylint-django && pylint --load-plugins pylint_django --rcfile=.pylintrc **/**.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 3.0.3 on 2020-12-21 08:49 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('fyle_rest_auth', '0005_remove_authtoken_access_token'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelTable( | ||
name='authtoken', | ||
table='auth_tokens', | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setuptools.setup( | ||
name='fyle-rest-auth', | ||
version='0.6.0', | ||
version='0.7.0', | ||
author='Shwetabh Kumar', | ||
author_email='[email protected]', | ||
description='Django application to implement OAuth 2.0 using Fyle in Django rest framework', | ||
|