Re-export requirements.txt to fix version errors (#1099)

* Re-export requirements.txt to fix version errors

The version of lxml in this file had a known vulnerability that got
caught by the "safety" checker, but it is updated in the poetry files.

Regenerated using:
https://github.com/usds/justice40-tool/tree/main/data/data-pipeline#miscellaneous

* Fix lint error

* Run lint on all envs and add comments

* Ignore testst that fail lint because of dev deps

* Ignore medium.com in link checker

It's returning 403s to github actions...
This commit is contained in:
Shaun Verch 2022-01-05 15:58:24 -05:00 committed by GitHub
commit 93595b7bb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 66 additions and 70 deletions

View file

@ -95,9 +95,13 @@ class EnergyDefinitionAlternativeDraft(ExtractTransformLoad):
)
# Convert to boolean:
self.df[field_names.ENERGY_RELATED_COMMUNITIES_DEFINITION_ALTERNATIVE] = \
self.df[field_names.ENERGY_RELATED_COMMUNITIES_DEFINITION_ALTERNATIVE
].astype('bool')
self.df[
field_names.ENERGY_RELATED_COMMUNITIES_DEFINITION_ALTERNATIVE
] = self.df[
field_names.ENERGY_RELATED_COMMUNITIES_DEFINITION_ALTERNATIVE
].astype(
"bool"
)
def validate(self) -> None:
logger.info("Validating data")