dataframely 1.7.0__tar.gz → 1.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dataframely-1.7.0 → dataframely-1.7.2}/PKG-INFO +1 -1
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/__init__.py +2 -1
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_extre.pyi +2 -2
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/failure.py +6 -4
- {dataframely-1.7.0 → dataframely-1.7.2}/pyproject.toml +1 -1
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_failure_info.py +12 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.copier-answers.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.envrc +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.gitattributes +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/CODEOWNERS +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/dependabot.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/release-drafter.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/workflows/build.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/workflows/chore.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/workflows/ci.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/workflows/nightly.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.github/workflows/scorecard.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.gitignore +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.pre-commit-config.yaml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.prettierignore +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.prettierrc +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/.readthedocs.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/Cargo.lock +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/Cargo.toml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/LICENSE +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/README.md +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/SECURITY.md +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_base_collection.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_base_schema.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_compat.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_deprecation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_filter.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_polars.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_rule.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_serialization.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_typing.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/_validation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/collection.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/__init__.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/_base.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/_mixins.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/_registry.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/_utils.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/any.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/array.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/bool.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/datetime.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/decimal.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/enum.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/float.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/integer.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/list.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/object.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/string.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/columns/struct.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/config.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/exc.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/functional.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/mypy.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/py.typed +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/random.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/schema.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/__init__.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/const.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/factory.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/mask.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/rules.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/dataframely/testing/typing.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docker-compose.yml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/Makefile +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.collection.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.any.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.bool.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.datetime.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.decimal.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.enum.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.float.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.integer.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.list.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.string.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.columns.struct.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.config.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.exc.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.failure.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.functional.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.mypy.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.random.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.schema.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.const.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.factory.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.mask.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.rules.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/dataframely.testing.typing.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_api/modules.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_static/custom.css +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/_static/favicon.ico +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/conf.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/index.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/make.bat +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/development.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/examples/real-world.ipynb +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/faq.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/installation.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/quickstart.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/docs/sites/versioning.rst +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/pixi.lock +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/pixi.toml +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/src/errdefs.rs +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/src/lib.rs +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/src/regex_repr.rs +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/benches/conftest.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/benches/test_collection.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/benches/test_failure.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/benches/test_schema.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_base.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_cast.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_collection_future_annotations.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_create_empty.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_filter_one_to_n.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_filter_validate.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_ignore_in_filter.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_implementation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_matches.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_optional_members.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_read_write_parquet.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_repr.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_sample.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_serialization.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_validate_input.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/__init__.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_any.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_array.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_datetime.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_decimal.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_enum.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_float.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_integer.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_list.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_object.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_string.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/column_types/test_struct.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/__init__.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_alias.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_check.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_default_dtypes.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_matches.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_metadata.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_polars_schema.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_pyarrow.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_rules.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_sample.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_sql_schema.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_str.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/columns/test_utils.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/core_validation/__init__.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/core_validation/test_column_validation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/core_validation/test_dtype_validation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/core_validation/test_rule_evaluation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/functional/test_concat.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/functional/test_relationships.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_base.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_cast.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_create_empty.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_create_empty_if_none.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_filter.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_inheritance.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_matches.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_read_write_parquet.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_repr.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_rule_implementation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_sample.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_serialization.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/schema/test_validate.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_compat.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_config.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_deprecation.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_exc.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_extre.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_random.py +0 -0
- {dataframely-1.7.0 → dataframely-1.7.2}/tests/test_typing.py +0 -0
|
@@ -14,7 +14,7 @@ from . import random
|
|
|
14
14
|
from ._base_collection import CollectionMember
|
|
15
15
|
from ._filter import filter
|
|
16
16
|
from ._rule import rule
|
|
17
|
-
from ._typing import DataFrame, LazyFrame
|
|
17
|
+
from ._typing import DataFrame, LazyFrame, Validation
|
|
18
18
|
from .collection import Collection, deserialize_collection
|
|
19
19
|
from .columns import (
|
|
20
20
|
Any,
|
|
@@ -96,4 +96,5 @@ __all__ = [
|
|
|
96
96
|
"List",
|
|
97
97
|
"Array",
|
|
98
98
|
"Object",
|
|
99
|
+
"Validation",
|
|
99
100
|
]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import overload
|
|
2
2
|
|
|
3
3
|
def matching_string_length(regex: str) -> tuple[int, int | None]:
|
|
4
4
|
"""
|
|
@@ -48,7 +48,7 @@ def sample(
|
|
|
48
48
|
@overload
|
|
49
49
|
def sample(
|
|
50
50
|
regex: str,
|
|
51
|
-
n:
|
|
51
|
+
n: None = None,
|
|
52
52
|
max_repetitions: int = 16,
|
|
53
53
|
seed: int | None = None,
|
|
54
54
|
) -> str: ...
|
|
@@ -97,7 +97,7 @@ class FailureInfo(Generic[S]):
|
|
|
97
97
|
Be aware that this method suffers from the same limitations as
|
|
98
98
|
:meth:`Schema.serialize`.
|
|
99
99
|
"""
|
|
100
|
-
metadata = self._build_metadata(**kwargs)
|
|
100
|
+
metadata, kwargs = self._build_metadata(**kwargs)
|
|
101
101
|
self._df.write_parquet(file, metadata=metadata, **kwargs)
|
|
102
102
|
|
|
103
103
|
def sink_parquet(
|
|
@@ -117,14 +117,16 @@ class FailureInfo(Generic[S]):
|
|
|
117
117
|
Be aware that this method suffers from the same limitations as
|
|
118
118
|
:meth:`Schema.serialize`.
|
|
119
119
|
"""
|
|
120
|
-
metadata = self._build_metadata(**kwargs)
|
|
120
|
+
metadata, kwargs = self._build_metadata(**kwargs)
|
|
121
121
|
self._lf.sink_parquet(file, metadata=metadata, **kwargs)
|
|
122
122
|
|
|
123
|
-
def _build_metadata(
|
|
123
|
+
def _build_metadata(
|
|
124
|
+
self, **kwargs: dict[str, Any]
|
|
125
|
+
) -> tuple[dict[str, Any], dict[str, Any]]:
|
|
124
126
|
metadata = kwargs.pop("metadata", {})
|
|
125
127
|
metadata[RULE_METADATA_KEY] = json.dumps(self._rule_columns)
|
|
126
128
|
metadata[SCHEMA_METADATA_KEY] = self.schema.serialize()
|
|
127
|
-
return metadata
|
|
129
|
+
return metadata, kwargs
|
|
128
130
|
|
|
129
131
|
@classmethod
|
|
130
132
|
def read_parquet(
|
|
@@ -19,7 +19,7 @@ description = "A declarative, polars-native data frame validation library"
|
|
|
19
19
|
name = "dataframely"
|
|
20
20
|
readme = "README.md"
|
|
21
21
|
requires-python = ">=3.11"
|
|
22
|
-
version = "1.7.
|
|
22
|
+
version = "1.7.2"
|
|
23
23
|
|
|
24
24
|
[project.urls]
|
|
25
25
|
Documentation = "https://dataframely.readthedocs.io/"
|
|
@@ -52,6 +52,18 @@ def test_scan_sink_parquet(tmp_path: Path) -> None:
|
|
|
52
52
|
assert MySchema.matches(read.schema)
|
|
53
53
|
|
|
54
54
|
|
|
55
|
+
def test_write_parquet_custom_metadata(tmp_path: Path) -> None:
|
|
56
|
+
df = pl.DataFrame(
|
|
57
|
+
{
|
|
58
|
+
"a": [4, 5, 6, 6, 7, 8],
|
|
59
|
+
"b": [1, 2, 3, 4, 5, 6],
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
_, failure = MySchema.filter(df)
|
|
63
|
+
failure.write_parquet(tmp_path / "failure.parquet", metadata={"custom": "test"})
|
|
64
|
+
assert pl.read_parquet_metadata(tmp_path / "failure.parquet")["custom"] == "test"
|
|
65
|
+
|
|
66
|
+
|
|
55
67
|
@pytest.mark.parametrize(
|
|
56
68
|
"read_fn",
|
|
57
69
|
[dy.FailureInfo.read_parquet, dy.FailureInfo.scan_parquet],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dataframely-1.7.0 → dataframely-1.7.2}/tests/collection/test_collection_future_annotations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|