Skip to content

Commit

Permalink
Update EL3 field lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
tim.reichard committed Jan 13, 2022
1 parent 9c01287 commit c9fab04
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ History
=======


v0.16.2 (2022-01-13)

* Update EL3 field lengths.


v0.16.1 (2022-01-13)

* Adding UniqueID as new el3 field, in place of StudentID
Expand Down
10 changes: 5 additions & 5 deletions aioradio/file_ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __post_init__(self):
}

self.field_to_max_widths = {
"UniqueID": 20,
"UniqueID": 50,
"StudentID": 50,
"LastName": 64,
"FirstName": 64,
Expand Down Expand Up @@ -143,19 +143,19 @@ def __post_init__(self):
"HSCode": 6,
"ACTScore": 2,
"SATScore": 4,
"ProspectCode": 15,
"ProspectCode": 256,
"ProspectDate": 10,
"FAFSASubmitted": 10,
"ApplicationPlan": 30,
"AdmitCode": 20,
"AdmitCode": 30,
"College": 30,
"AdmittedProgram": 30,
"AdmittedProgram": 256,
"HonorsProgram": 5,
"StudentType": 20,
"International": 5,
"CountryOfOrigin": 30,
"StudentStatus": 20,
"Territory": 20,
"Territory": 30,
"EngagementScore": 10,
"CustomFilter1": 20,
"CustomFilter2": 20,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = fileobj.read()

setup(name='aioradio',
version='0.16.1',
version='0.16.2',
description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit c9fab04

Please sign in to comment.