Skip to content

Commit

Permalink
[US_IX][Workflows] Remove income verification from early discharge cr…
Browse files Browse the repository at this point in the history
…iteria (Recidiviz/recidiviz-data#29437)

## Description of the change

Feedback from leadership.

Tested in `shuff`. Makes 2682 additional clients eligible.

## Type of change

> All pull requests must have at least one of the following labels
applied (otherwise the PR will fail):

| Label | Description |
|-----------------------------
|-----------------------------------------------------------------------------------------------------------
|
| Type: Bug | non-breaking change that fixes an issue |
| Type: Feature | non-breaking change that adds functionality |
| Type: Breaking Change | fix or feature that would cause existing
functionality to not work as expected |
| Type: Non-breaking refactor | change addresses some tech debt item or
prepares for a later change, but does not change functionality |
| Type: Configuration Change | adjusts configuration to achieve some end
related to functionality, development, performance, or security |
| Type: Dependency Upgrade | upgrades a project dependency - these
changes are not included in release notes |

## Related issues

Closes Recidiviz/recidiviz-data#29404

## Checklists

### Development

**This box MUST be checked by the submitter prior to merging**:
- [x] **Double- and triple-checked that there is no Personally
Identifiable Information (PII) being mistakenly added in this pull
request**

These boxes should be checked by the submitter prior to merging:
- [ ] Tests have been written to cover the code changed/added as part of
this pull request

### Code review

These boxes should be checked by reviewers prior to merging:

- [ ] This pull request has a descriptive title and information useful
to a reviewer
- [ ] Potential security implications or infrastructural changes have
been considered, if relevant

GitOrigin-RevId: cd92b4080e0ecbe71a0c273666a57c711d82541a
  • Loading branch information
samanthahuff authored and Helper Bot committed May 17, 2024
1 parent 1596764 commit d2f6161
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
supervision_not_past_full_term_completion_date,
)
from recidiviz.task_eligibility.criteria.state_specific.us_ix import (
income_verified_within_3_months,
lsir_level_low_moderate_for_x_days,
parole_dual_supervision_past_early_discharge_date,
)
Expand All @@ -54,7 +53,6 @@
negative_ua_within_90_days.VIEW_BUILDER,
lsir_level_low_moderate_for_x_days.VIEW_BUILDER,
no_felony_within_24_months.VIEW_BUILDER,
income_verified_within_3_months.VIEW_BUILDER,
],
completion_event_builder=early_discharge.VIEW_BUILDER,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
supervision_not_past_full_term_completion_date,
)
from recidiviz.task_eligibility.criteria.state_specific.us_ix import (
income_verified_within_3_months,
lsir_level_low_moderate_for_x_days,
)
from recidiviz.task_eligibility.single_task_eligiblity_spans_view_builder import (
Expand All @@ -53,7 +52,6 @@
negative_ua_within_90_days.VIEW_BUILDER,
lsir_level_low_moderate_for_x_days.VIEW_BUILDER,
no_felony_within_24_months.VIEW_BUILDER,
income_verified_within_3_months.VIEW_BUILDER,
],
completion_event_builder=early_discharge.VIEW_BUILDER,
)
Expand Down

0 comments on commit d2f6161

Please sign in to comment.