Skip to content

Commit

Permalink
Merge branch 'm/_/pandas2-only' of https://github.com/great-expectati…
Browse files Browse the repository at this point in the history
…ons/great_expectations into m/_/pandas2-only

* 'm/_/pandas2-only' of https://github.com/great-expectations/great_expectations:
  [MAINTENANCE] Add public_api to read_parquet (#8060)
  [BUGFIX] fix issue-7954 (#7963)
  [MAINTENANCE] Delete `LegacyCheckpoint` (#8082)
  [BUGFIX] Fix broken Cloud tests around `Checkpoint` (#8083)
  [MAINTENANCE] Update PR template to reference `invoke` for linting (#8079)
  [MAINTENANCE] Ruff `0.0.271` update (#8077)
  [MAINTENANCE] Update default action list in `Checkpoint` based on user environment (#8074)
  • Loading branch information
Shinnnyshinshin committed Jun 7, 2023
2 parents aae8902 + 3b314c5 commit 408697f
Show file tree
Hide file tree
Showing 76 changed files with 730 additions and 1,488 deletions.
8 changes: 1 addition & 7 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@

- [ ] Description of PR changes above includes a link to [an existing GitHub issue](https://github.com/great-expectations/great_expectations/issues)
- [ ] PR title is prefixed with one of: [BUGFIX], [FEATURE], [DOCS], [MAINTENANCE], [CONTRIB]
- [ ] Code is linted

```
black .
ruff . --fix
```
- [ ] Code is linted - run `invoke lint` (uses `black` + `ruff`)
- [ ] Appropriate tests and docs have been updated

For more details, see our [Contribution Checklist](https://docs.greatexpectations.io/docs/contributing/contributing_checklist), [Coding style guide](https://docs.greatexpectations.io/docs/contributing/style_guides/code_style), and [Documentation style guide](https://docs.greatexpectations.io/docs/contributing/style_guides/docs_style).
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
hooks:
- id: black-jupyter
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.270'
rev: 'v0.0.271'
hooks:
- id: ruff
files: ^(great_expectations|contrib|scripts|tasks\.py) # TODO: add tests/ docs/ etc.
Expand Down
2 changes: 1 addition & 1 deletion contrib/cli/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ cookiecutter==2.1.1 # Project templating
mypy==1.3.0 # Type checker
pydantic>=1.0,<2.0 # Needed for mypy plugin
pytest>=5.3.5 # Test framework
ruff==0.0.270 # Linting / code style
ruff==0.0.271 # Linting / code style
twine==3.7.1 # Packaging
wheel==0.38.1 # Packaging
5 changes: 0 additions & 5 deletions docs/sphinx_api_docs_source/public_api_missing_threshold.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

ITEMS_IGNORED_FROM_PUBLIC_API = [
"File: great_expectations/checkpoint/actions.py Name: _run",
"File: great_expectations/checkpoint/checkpoint.py Name: LegacyCheckpoint",
"File: great_expectations/checkpoint/checkpoint.py Name: run",
"File: great_expectations/core/batch.py Name: head",
"File: great_expectations/core/batch_spec.py Name: to_json_dict",
"File: great_expectations/core/expectation_suite.py Name: show_expectations_by_expectation_type",
Expand Down Expand Up @@ -40,8 +38,6 @@
"File: great_expectations/datasource/data_connector/asset/asset.py Name: Asset",
"File: great_expectations/datasource/fluent/config.py Name: get_datasource",
"File: great_expectations/datasource/fluent/fluent_base_model.py Name: dict",
"File: great_expectations/datasource/fluent/pandas_datasource.py Name: add_csv_asset",
"File: great_expectations/datasource/fluent/pandas_datasource.py Name: add_table_asset",
"File: great_expectations/datasource/fluent/pandas_datasource.py Name: dict",
"File: great_expectations/datasource/fluent/sources.py Name: add_datasource",
"File: great_expectations/datasource/fluent/sources.py Name: delete_datasource",
Expand Down Expand Up @@ -104,6 +100,5 @@
"File: great_expectations/datasource/fluent/sql_datasource.py Name: get_batch_list_from_batch_request",
"File: great_expectations/datasource/fluent/pandas_datasource.py Name: get_batch_list_from_batch_request",
"File: great_expectations/datasource/fluent/file_path_data_asset.py Name: get_batch_list_from_batch_request",
"File: great_expectations/datasource/fluent/pandas_datasource.py Name: read_parquet",
"File: great_expectations/util.py Name: read_parquet",
]
2 changes: 1 addition & 1 deletion great_expectations/checkpoint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
UpdateDataDocsAction,
ValidationAction,
)
from .checkpoint import Checkpoint, LegacyCheckpoint, SimpleCheckpoint
from .checkpoint import Checkpoint, SimpleCheckpoint
from .configurator import SimpleCheckpointConfigurator

for module_name, package_name in [
Expand Down
Loading

0 comments on commit 408697f

Please sign in to comment.