Skip to content

Commit

Permalink
Bump assesspy in ratio_stats
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsnow committed Dec 2, 2024
1 parent 5ed3ef1 commit ad2cb6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit ad2cb6f

Please sign in to comment.