Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump assesspy version in ratio_stats #658

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[*.sh]
indent_style = space
indent_size = 4
binary_next_line = true
switch_case_indent = true
space_redirects = true
8 changes: 4 additions & 4 deletions .github/scripts/deploy_dbt_model_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
# Zip archives uploaded using this script can be used to import packages
# into a Python model script with a set of import calls like so:
#
# sc.addPyFile(f"{s3_dependency_dir}/attrs==23.2.0.zip") # noqa: F821
# sc.addPyFile(f"{s3_dependency_dir}/assesspy==1.2.0.zip") # noqa: F821
# import attrs # noqa: E402
# import assesspy # noqa: E402
# sc.addPyFile(f"{s3_dependency_dir}/attrs==23.2.0.zip")
# sc.addPyFile(f"{s3_dependency_dir}/assesspy==2.0.1.zip")
# import attrs
# import assesspy
#
# Dependencies are installed using the `--no-deps` flag for `pip install`,
# meaning that your dependency's dependencies will not be installed or
Expand Down
2 changes: 1 addition & 1 deletion dbt/models/reporting/reporting.ratio_stats.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pylint: skip-file
# type: ignore
sc.addPyFile("s3://ccao-athena-dependencies-us-east-1/assesspy==2.0.0.zip")
sc.addPyFile("s3://ccao-athena-dependencies-us-east-1/assesspy==2.0.1.zip")

from typing import Union

Expand Down
2 changes: 1 addition & 1 deletion dbt/models/reporting/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ models:
tags:
- daily
packages:
- "assesspy==2.0.0"
- "assesspy==2.0.1"
data_tests:
- expression_is_true:
name: reporting_ratio_stats_metrics_are_sensible
Expand Down
Loading