diff --git a/HISTORY.rst b/HISTORY.rst index 3f9130e..e16b368 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 diff --git a/aioradio/file_ingestion.py b/aioradio/file_ingestion.py index 693884b..f38929f 100644 --- a/aioradio/file_ingestion.py +++ b/aioradio/file_ingestion.py @@ -107,7 +107,7 @@ def __post_init__(self): } self.field_to_max_widths = { - "UniqueID": 20, + "UniqueID": 50, "StudentID": 50, "LastName": 64, "FirstName": 64, @@ -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, diff --git a/setup.py b/setup.py index 3ef06ac..d92b77b 100644 --- a/setup.py +++ b/setup.py @@ -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",