dataframely 2.13.2__tar.gz → 3.0.0__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-3.0.0/.github/dependabot.yml +39 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/build.yml +5 -5
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/chore.yml +3 -3
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/ci.yml +4 -4
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/copilot-setup-steps.yml +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/nightly.yml +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/release-drafter.yml +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/workflows/scorecard.yml +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/Cargo.lock +417 -281
- dataframely-3.0.0/Cargo.toml +40 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/PKG-INFO +3 -10
- {dataframely-2.13.2 → dataframely-3.0.0}/README.md +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/__init__.py +3 -15
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_base_schema.py +16 -17
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_compat.py +1 -34
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_native.pyi +16 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_pydantic.py +1 -4
- dataframely-3.0.0/dataframely/_rule.py +152 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_typing.py +1 -3
- dataframely-3.0.0/dataframely/collection/__init__.py +13 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/collection/collection.py +101 -635
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/collection/filter_result.py +1 -3
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/__init__.py +0 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/_base.py +9 -111
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/any.py +1 -10
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/array.py +9 -31
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/binary.py +1 -7
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/bool.py +1 -7
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/categorical.py +49 -8
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/datetime.py +1 -27
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/decimal.py +1 -10
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/enum.py +3 -15
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/float.py +1 -17
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/integer.py +1 -47
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/list.py +3 -23
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/object.py +1 -7
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/string.py +1 -7
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/struct.py +6 -27
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/exc.py +0 -14
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/filter_result.py +51 -195
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/schema.py +38 -735
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_templates/classes/column.rst +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/io.rst +0 -14
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/errors/index.rst +0 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/filter_result/failure_info.rst +0 -3
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/schema/conversion.rst +0 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/schema/index.rst +0 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/examples/real-world.ipynb +4 -11
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/faq.md +2 -2
- dataframely-3.0.0/docs/guides/features/serialization.md +67 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/migration/index.md +1 -0
- dataframely-3.0.0/docs/guides/migration/v2-v3.md +181 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/quickstart.md +5 -31
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/index.md +2 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/pixi.lock +6522 -7915
- {dataframely-2.13.2 → dataframely-3.0.0}/pixi.toml +1 -6
- {dataframely-2.13.2 → dataframely-3.0.0}/pyproject.toml +3 -15
- {dataframely-2.13.2 → dataframely-3.0.0}/rust-toolchain.toml +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/skills/SKILL.md +1 -10
- dataframely-3.0.0/src/arrow.rs +61 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/lib.rs +2 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/polars_plugin/mod.rs +3 -3
- {dataframely-2.13.2 → dataframely-3.0.0}/src/polars_plugin/rule_failure.rs +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/benches/test_collection.py +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/benches/test_schema.py +31 -33
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_base.py +2 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_cast.py +3 -3
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_create_empty.py +3 -2
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_dataframe_members.py +29 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_filter_validate.py +18 -18
- dataframely-3.0.0/tests/collection/test_parquet.py +106 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_skip_member_validation.py +4 -4
- dataframely-3.0.0/tests/column_types/test_categorical.py +88 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_enum.py +4 -6
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_object.py +0 -8
- dataframely-3.0.0/tests/columns/test_arrow_pycapsule.py +215 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_polars_schema.py +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/core_validation/test_rule_evaluation.py +1 -48
- dataframely-3.0.0/tests/failure_info/test_parquet.py +82 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_cast.py +1 -1
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_filter.py +32 -40
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_matches.py +1 -41
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_repr.py +3 -3
- dataframely-3.0.0/tests/schema/test_rule_implementation.py +22 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_sample.py +4 -4
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_validate.py +72 -56
- dataframely-3.0.0/tests/test_deprecation.py +34 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_pydantic.py +2 -2
- dataframely-2.13.2/.github/dependabot.yml +0 -14
- dataframely-2.13.2/Cargo.toml +0 -33
- dataframely-2.13.2/dataframely/_rule.py +0 -300
- dataframely-2.13.2/dataframely/_serialization.py +0 -118
- dataframely-2.13.2/dataframely/_storage/__init__.py +0 -7
- dataframely-2.13.2/dataframely/_storage/_base.py +0 -203
- dataframely-2.13.2/dataframely/_storage/_exc.py +0 -10
- dataframely-2.13.2/dataframely/_storage/_fsspec.py +0 -18
- dataframely-2.13.2/dataframely/_storage/constants.py +0 -6
- dataframely-2.13.2/dataframely/_storage/delta.py +0 -203
- dataframely-2.13.2/dataframely/_storage/parquet.py +0 -255
- dataframely-2.13.2/dataframely/collection/__init__.py +0 -20
- dataframely-2.13.2/dataframely/columns/_registry.py +0 -32
- dataframely-2.13.2/dataframely/testing/storage.py +0 -389
- dataframely-2.13.2/docs/api/schema/io.rst +0 -37
- dataframely-2.13.2/docs/guides/features/serialization.md +0 -225
- dataframely-2.13.2/tests/collection/test_serialization.py +0 -174
- dataframely-2.13.2/tests/collection/test_storage.py +0 -552
- dataframely-2.13.2/tests/columns/test_pyarrow.py +0 -276
- dataframely-2.13.2/tests/conftest.py +0 -49
- dataframely-2.13.2/tests/failure_info/test_storage.py +0 -181
- dataframely-2.13.2/tests/schema/test_read_write_parquet.py +0 -61
- dataframely-2.13.2/tests/schema/test_rule_implementation.py +0 -101
- dataframely-2.13.2/tests/schema/test_serialization.py +0 -139
- dataframely-2.13.2/tests/schema/test_storage.py +0 -375
- dataframely-2.13.2/tests/storage/test_delta.py +0 -54
- dataframely-2.13.2/tests/storage/test_fsspec.py +0 -26
- dataframely-2.13.2/tests/test_deprecation.py +0 -149
- dataframely-2.13.2/tests/test_serialization.py +0 -22
- {dataframely-2.13.2 → dataframely-3.0.0}/.claude/CLAUDE.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.copier-answers.yml +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.envrc +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.gitattributes +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/CODEOWNERS +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/copilot-instructions.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/instructions/tests.instructions.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.github/release-drafter.yml +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.gitignore +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.lefthook.yaml +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.prettierignore +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.prettierrc +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/.readthedocs.yml +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/AGENTS.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/LICENSE +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/SECURITY.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_deprecation.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_filter.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_match_to_schema.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_plugin.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/_polars.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/collection/_base.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/_mixins.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/columns/_utils.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/config.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/experimental/__init__.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/experimental/infer_schema.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/functional.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/py.typed +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/random.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/testing/__init__.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/testing/const.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/testing/factory.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/testing/mask.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/dataframely/testing/rules.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docker-compose.yml +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_static/custom.css +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_static/favicon.ico +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_templates/autosummary/class.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_templates/autosummary/method.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_templates/classes/error.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/_templates/classes/filter_result.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/generation.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/metadata.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/operations.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/collection/validation.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/columns/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/experimental/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/filter_result/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/misc/index.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/schema/generation.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/schema/metadata.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/api/schema/validation.rst +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/conf.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/css/custom.css +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/coding-agents.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/development.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/examples/index.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/column-metadata.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/data-generation.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/index.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/lazy-validation.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/primary-keys.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/features/sql-generation.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/index.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/docs/guides/migration/v1-v2.md +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/polars_plugin/utils.rs +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/polars_plugin/validation_error.rs +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/regex/errdefs.rs +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/regex/mod.rs +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/src/regex/repr.rs +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/benches/conftest.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/benches/test_failure.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_collection_future_annotations.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_filter_one_to_n.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_ignore_in_filter.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_implementation.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_join.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_matches.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_optional_members.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_pipe.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_propagate_row_failures.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_repr.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_sample.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/collection/test_validate_input.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/__init__.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_any.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_array.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_binary.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_datetime.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_decimal.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_float.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_integer.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_list.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_string.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/column_types/test_struct.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/__init__.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_alias.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_base.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_check.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_default_dtypes.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_description.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_matches.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_metadata.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_pydantic.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_rules.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_sample.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_sqlalchemy_columns.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_str.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/columns/test_utils.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/core_validation/__init__.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/core_validation/test_match_to_schema.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/experimental/test_infer_schema.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/functional/test_concat.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/functional/test_relationships.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_base.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_create_empty.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_create_empty_if_none.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_inheritance.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/schema/test_pydantic_model.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_compat.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_config.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_factory.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_native_regex.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_random.py +0 -0
- {dataframely-2.13.2 → dataframely-3.0.0}/tests/test_typing.py +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: github-actions
|
|
4
|
+
directory: /
|
|
5
|
+
schedule:
|
|
6
|
+
interval: monthly
|
|
7
|
+
groups:
|
|
8
|
+
gh-actions:
|
|
9
|
+
patterns:
|
|
10
|
+
- "*"
|
|
11
|
+
commit-message:
|
|
12
|
+
prefix: ci
|
|
13
|
+
cooldown:
|
|
14
|
+
default-days: 7
|
|
15
|
+
- package-ecosystem: cargo
|
|
16
|
+
directory: /
|
|
17
|
+
schedule:
|
|
18
|
+
interval: monthly
|
|
19
|
+
versioning-strategy: lockfile-only
|
|
20
|
+
groups:
|
|
21
|
+
cargo:
|
|
22
|
+
patterns:
|
|
23
|
+
- "*"
|
|
24
|
+
commit-message:
|
|
25
|
+
prefix: build
|
|
26
|
+
cooldown:
|
|
27
|
+
default-days: 7
|
|
28
|
+
- package-ecosystem: rust-toolchain
|
|
29
|
+
directory: /
|
|
30
|
+
schedule:
|
|
31
|
+
interval: quarterly
|
|
32
|
+
cooldown:
|
|
33
|
+
default-days: 7
|
|
34
|
+
groups:
|
|
35
|
+
rust-toolchain:
|
|
36
|
+
patterns:
|
|
37
|
+
- "*"
|
|
38
|
+
commit-message:
|
|
39
|
+
prefix: chore
|
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
permissions:
|
|
14
14
|
contents: read
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
17
17
|
with:
|
|
18
18
|
fetch-depth: 0
|
|
19
19
|
- name: Set up pixi
|
|
20
|
-
uses: prefix-dev/setup-pixi@
|
|
20
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
21
21
|
with:
|
|
22
22
|
environments: build
|
|
23
23
|
- name: Set version
|
|
@@ -48,11 +48,11 @@ jobs:
|
|
|
48
48
|
- target-platform: win-64
|
|
49
49
|
os: windows-latest
|
|
50
50
|
steps:
|
|
51
|
-
- uses: actions/checkout@
|
|
51
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
52
52
|
with:
|
|
53
53
|
fetch-depth: 0
|
|
54
54
|
- name: Set up pixi
|
|
55
|
-
uses: prefix-dev/setup-pixi@
|
|
55
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
56
56
|
with:
|
|
57
57
|
environments: build
|
|
58
58
|
- name: Set version
|
|
@@ -115,4 +115,4 @@ jobs:
|
|
|
115
115
|
path: dist
|
|
116
116
|
merge-multiple: true
|
|
117
117
|
- name: Publish package on PyPi
|
|
118
|
-
uses: pypa/gh-action-pypi-publish@
|
|
118
|
+
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
GITHUB_TOKEN: ${{ github.token }}
|
|
26
26
|
- name: Post comment about invalid PR title
|
|
27
27
|
if: failure()
|
|
28
|
-
uses: marocchino/sticky-pull-request-comment@
|
|
28
|
+
uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5
|
|
29
29
|
with:
|
|
30
30
|
header: conventional-commit-pr-title
|
|
31
31
|
message: |
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
</details>
|
|
43
43
|
- name: Delete comment about invalid PR title
|
|
44
44
|
if: success()
|
|
45
|
-
uses: marocchino/sticky-pull-request-comment@
|
|
45
|
+
uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5
|
|
46
46
|
with:
|
|
47
47
|
header: conventional-commit-pr-title
|
|
48
48
|
delete: true
|
|
@@ -54,6 +54,6 @@ jobs:
|
|
|
54
54
|
pull-requests: write
|
|
55
55
|
steps:
|
|
56
56
|
- name: Assign labels
|
|
57
|
-
uses: release-drafter/release-drafter/autolabeler@
|
|
57
|
+
uses: release-drafter/release-drafter/autolabeler@eada3c96a64734dd381cfbda23511034e328ddb0 # v7.6.0
|
|
58
58
|
with:
|
|
59
59
|
token: ${{ github.token }}
|
|
@@ -19,12 +19,12 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout branch
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
23
23
|
with:
|
|
24
24
|
# needed for 'pre-commit-mirrors-insert-license'
|
|
25
25
|
fetch-depth: 0
|
|
26
26
|
- name: Set up pixi
|
|
27
|
-
uses: prefix-dev/setup-pixi@
|
|
27
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
28
28
|
with:
|
|
29
29
|
environments: default lint polars-minimal
|
|
30
30
|
- name: Install Rust
|
|
@@ -63,9 +63,9 @@ jobs:
|
|
|
63
63
|
with_optionals: false
|
|
64
64
|
steps:
|
|
65
65
|
- name: Checkout branch
|
|
66
|
-
uses: actions/checkout@
|
|
66
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
67
67
|
- name: Set up pixi
|
|
68
|
-
uses: prefix-dev/setup-pixi@
|
|
68
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
69
69
|
with:
|
|
70
70
|
environments: ${{ matrix.environment }}
|
|
71
71
|
# FIXME: Remove when `s3_server` fixture does not start a process anymore
|
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
id-token: write
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout branch
|
|
16
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
17
17
|
- name: Set up pixi
|
|
18
|
-
uses: prefix-dev/setup-pixi@
|
|
18
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
19
19
|
with:
|
|
20
20
|
environments: default
|
|
21
21
|
- name: Install Rust
|
|
@@ -23,9 +23,9 @@ jobs:
|
|
|
23
23
|
os: [ubuntu-latest, windows-latest]
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout branch
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
27
27
|
- name: Set up pixi
|
|
28
|
-
uses: prefix-dev/setup-pixi@
|
|
28
|
+
uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
|
|
29
29
|
with:
|
|
30
30
|
environments: nightly
|
|
31
31
|
- name: Install polars nightly
|
|
@@ -16,6 +16,6 @@ jobs:
|
|
|
16
16
|
pull-requests: read
|
|
17
17
|
steps:
|
|
18
18
|
- name: Update release draft
|
|
19
|
-
uses: release-drafter/release-drafter@
|
|
19
|
+
uses: release-drafter/release-drafter@eada3c96a64734dd381cfbda23511034e328ddb0 # v7.6.0
|
|
20
20
|
with:
|
|
21
21
|
token: ${{ github.token }}
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
|
|
36
36
|
steps:
|
|
37
37
|
- name: "Checkout code"
|
|
38
|
-
uses: actions/checkout@
|
|
38
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
39
39
|
with:
|
|
40
40
|
persist-credentials: false
|
|
41
41
|
|
|
@@ -74,6 +74,6 @@ jobs:
|
|
|
74
74
|
# Upload the results to GitHub's code scanning dashboard (optional).
|
|
75
75
|
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
|
|
76
76
|
- name: "Upload to code-scanning"
|
|
77
|
-
uses: github/codeql-action/upload-sarif@
|
|
77
|
+
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
|
|
78
78
|
with:
|
|
79
79
|
sarif_file: results.sarif
|