-
Notifications
You must be signed in to change notification settings - Fork 1
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 Remove Pylint workflows
- Loading branch information
1 parent
61b5f1f
commit a36e55c
Showing
5 changed files
with
64 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ __pycache__/ | |
|
||
# IDEs | ||
.idea/ | ||
.vscode | ||
|
||
# Distribution / packaging | ||
.Python | ||
|
29 changes: 29 additions & 0 deletions
29
fyle_accounting_mappings/migrations/0003_auto_20201221_1244.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,29 @@ | ||
# Generated by Django 3.0.3 on 2020-12-21 12:44 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('fyle_accounting_mappings', '0002_auto_20201117_0655'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelTable( | ||
name='destinationattribute', | ||
table='destination_attributes', | ||
), | ||
migrations.AlterModelTable( | ||
name='expenseattribute', | ||
table='expense_attributes', | ||
), | ||
migrations.AlterModelTable( | ||
name='mapping', | ||
table='mappings', | ||
), | ||
migrations.AlterModelTable( | ||
name='mappingsetting', | ||
table='mapping_settings', | ||
), | ||
] |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
asgiref==3.2.3 | ||
astroid==2.3.3 | ||
certifi==2019.11.28 | ||
chardet==3.0.4 | ||
Django==3.0.2 | ||
django-rest-framework==0.1.0 | ||
djangorestframework==3.11.0 | ||
fylesdk==0.11.0 | ||
idna==2.8 | ||
isort==4.3.21 | ||
lazy-object-proxy==1.4.3 | ||
mccabe==0.6.1 | ||
pylint==2.4.4 | ||
pylint-django==2.0.13 | ||
pylint-plugin-utils==0.6 | ||
pytz==2019.3 | ||
requests==2.22.0 | ||
requests-cache==0.5.2 | ||
six==1.14.0 | ||
sqlparse==0.3.0 | ||
typed-ast==1.4.1 | ||
urllib3==1.25.7 | ||
wrapt==1.11.2 |
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-accounting-mappings', | ||
version='0.4.0', | ||
version='0.5.0', | ||
author='Shwetabh Kumar', | ||
author_email='[email protected]', | ||
description='Django application to store the fyle accounting mappings in a generic manner', | ||
|