-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from moj-analytical-services/add-regex-rule
Added additional regex rule
- Loading branch information
Showing
5 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ | |
) | ||
from .utils import s3_path_join # noqa: F401 | ||
|
||
__version__ = "5.5.16" | ||
__version__ = "5.5.17" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool] | ||
[tool.poetry] | ||
name = "pydbtools" | ||
version = "5.5.16" | ||
version = "5.5.17" | ||
description = "A python package to query data via amazon athena and bring it into a pandas df using aws-wrangler." | ||
license = "MIT" | ||
authors = ["Karik Isichei <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,8 @@ def test_pyproject_toml_matches_version(): | |
("abcde:my-name", None), | ||
("d347875:alpha_user_some_user", "alpha_user_some_user"), | ||
("d347875:alpha_user_some-user", "alpha_user_some_user"), | ||
("d347875:alpha_app_some_user", "alpha_app_some_user"), | ||
("d347875:alpha_app_some-user", "alpha_app_some_user"), | ||
("abcde:[email protected]", "my_name"), | ||
("abcde:[email protected]", "my_name"), | ||
("3f7f9e93-airflow_prod_role_name", "airflow_prod_role_name"), | ||
|