Update brightfunds importer and bump version number

This commit is contained in:
Rosanne DiMesio 2021-07-14 13:19:50 -05:00
parent c714b2f41f
commit ac2359101b
2 changed files with 7 additions and 2 deletions

View file

@ -53,7 +53,12 @@ class _BrightFundsMixin:
class DonorReportImporter(_BrightFundsMixin, _csv.CSVImporterBase):
pass
BOOK_KWARGS = {'encoding_override': 'utf-8'}
DATE_FMT = '%m/%d/%Y'
DATE_FIELD = 'Created'
DONOR_FIELD = 'Donor Name'
EMAIL_FIELD = 'Donor Email'
TYPE_FIELD = 'Type'
class DonorReportXLSImporter(_BrightFundsMixin, _xls.XLSImporterBase):

View file

@ -30,7 +30,7 @@ REQUIREMENTS['tests_require'] = [
setup(
name='import2ledger',
description="Import different sources of financial data to Ledger",
version='1.4.3',
version='1.4.4',
author='Brett Smith',
author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+',